Skip to content

Commit 164d701

Browse files
authored
Tags fixing
1 parent 3774a07 commit 164d701

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

action.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,9 @@ inputs:
3737
description: 'Set to true to provision infrastructure (with Terraform) but skip the app deployment (with ansible)'
3838
default: "false"
3939
additional_tags:
40-
description: 'A JSON object of additional tags that will be included on created resources. Example: `{"key1": "value1", "key2": "value2"}`'
40+
description: 'A list of additional tags that will be included on created resources. Example: `{"key1": "value1", "key2": "value2"}`'
4141
required: false
42-
default: {}
43-
42+
default: '{}'
4443

4544
# Terraform configuration
4645
tf_state_bucket:

operations/_scripts/generate/generate_tf_vars.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ region = \"${AWS_DEFAULT_REGION}\"
8484
# Route53
8585
route53_zone_id = \"${ROUTE53_ZONE_ID}\"
8686
87-
additional_tags =\"${ADDITIONAL_TAGS}\"
87+
additional_tags = ${ADDITIONAL_TAGS}
8888
8989
9090
" > "${GITHUB_ACTION_PATH}/operations/deployment/terraform/terraform.tfvars"

0 commit comments

Comments
 (0)