Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Sep 11, 2025
1 parent 5908b7a commit 392f0b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion local-app/tf-directory-setup/remote_state.data.tf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data "terraform_remote_state" "{{ data.directory_replaced }}" {
config = {
profile = var.profile
bucket = var.tfstate_bucket
key = join("/",compact([var.tfstate_key_prefix,{{ data.directory }},var.tfstate_key_suffix]))
key = join("/",compact([var.tfstate_key_prefix,"{{ data.directory }}",var.tfstate_key_suffix]))
region = var.tfstate_region
dynamodb_table = var.tfstate_table
}
Expand Down
2 changes: 1 addition & 1 deletion local-app/tf-directory-setup/remote_state.data.tf.s3.j2
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data "terraform_remote_state" "{{ data.directory_replaced }}" {
config = {
profile = var.profile
bucket = var.tfstate_bucket
key = join("/",compact([var.tfstate_key_prefix,{{ data.directory }},var.tfstate_key_suffix]))
key = join("/",compact([var.tfstate_key_prefix,"{{ data.directory }}",var.tfstate_key_suffix]))
region = var.tfstate_region
dynamodb_table = var.tfstate_table
}
Expand Down

0 comments on commit 392f0b8

Please sign in to comment.