Skip to content

Commit 08e0664

Browse files
Fix Terraform variable passing in workflow - remove quotes from booleans and numbers
1 parent d310068 commit 08e0664

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ jobs:
4949
env:
5050
TF_VAR_vpc_id: ${{ secrets.VPC_ID }}
5151
TF_VAR_subnet_ids: ${{ secrets.ES_SUBNET_IDS }}
52-
TF_VAR_assign_public_ip: "false"
52+
TF_VAR_assign_public_ip: false
5353
TF_VAR_allowed_cidr_blocks: ${{ secrets.VPC_CIDR_BLOCKS }}
5454
TF_VAR_elasticsearch_password: ${{ secrets.ELASTICSEARCH_PASSWORD }}
55-
TF_VAR_task_cpu: "1024"
56-
TF_VAR_task_memory: "2048"
57-
TF_VAR_heap_size: "1024"
58-
TF_VAR_enable_service_discovery: "true"
55+
TF_VAR_task_cpu: 1024
56+
TF_VAR_task_memory: 2048
57+
TF_VAR_heap_size: 1024
58+
TF_VAR_enable_service_discovery: true
5959

6060
- name: Wait for Elasticsearch to be ready
6161
run: |

0 commit comments

Comments
 (0)