Skip to content

Commit

Permalink
fix the region for the helm values
Browse files Browse the repository at this point in the history
  • Loading branch information
lmouhib committed Oct 11, 2023
1 parent b49ca21 commit 6bb6555
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion streaming/emr-flink-karpenter/addons.tf
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,9 @@ module "eks_data_addons" {
enable_emr_flink_operator = true
flink_operator_helm_config = {
version = "6.13.0"
values = [templatefile("${path.module}/helm-values/emr-flink-operator-values.yaml", {})]
values = [templatefile("${path.module}/helm-values/emr-flink-operator-values.yaml", {
aws_region = var.region
})]
}

#---------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ image:
replicas: 1

emrContainers:
awsRegion: ""
awsRegion: ${aws_region}
operatorExecutionRoleArn: ""

operatorPod:
Expand Down

0 comments on commit 6bb6555

Please sign in to comment.