Skip to content

Commit

Permalink
[FIX] error on github actions env
Browse files Browse the repository at this point in the history
  • Loading branch information
ohksj77 committed Mar 16, 2024
1 parent 1e781c6 commit b0ab961
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/backend-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ jobs:
env:
TF_VAR_vpc_cidr_block: ${{ secrets.TF_VAR_vpc_cidr_block }}
TF_VAR_public_subnet_cidr: ${{ secrets.TF_VAR_public_subnet_cidr }}
TF_VAR_private_subnet_cidr: ${{ toJson(secrets.TF_VAR_private_subnet_cidr) }}
TF_VAR_private_subnet_cidr: ${{ secrets.TF_VAR_private_subnet_cidr }}
TF_VAR_ami: ${{ secrets.TF_VAR_ami }}
TF_VAR_db_password: ${{ secrets.TF_VAR_db_password }}
TF_VAR_tags: ${{ toJson(secrets.TF_VAR_tags) }}
TF_VAR_elb_protocol: ${{ toJson(secrets.TF_VAR_elb_protocol) }}
TF_VAR_elb_port: ${{ toJson(secrets.TF_VAR_elb_port) }}
TF_VAR_rabbitmq: ${{ toJson(secrets.TF_VAR_rabbitmq) }}
TF_VAR_tags: ${{ secrets.TF_VAR_tags }}
TF_VAR_elb_protocol: ${{ secrets.TF_VAR_elb_protocol }}
TF_VAR_elb_port: ${{ secrets.TF_VAR_elb_port }}
TF_VAR_rabbitmq: ${{ secrets.TF_VAR_rabbitmq }}

- name: Get EC2 instance IP
id: get_ec2_ip
Expand Down

0 comments on commit b0ab961

Please sign in to comment.