Skip to content

Commit 849b47d

Browse files
committed
support back compatibility
1 parent f482847 commit 849b47d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/terraform-deploy-data-qa-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ on:
1515
description: 'Terraform Target, please provide target env name'
1616
required: true
1717
options:
18-
- dev
19-
- intg
18+
- data_qa
19+
- data_qa_intg
2020

2121
jobs:
2222
terraform:

examples/basic/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ data "aws_caller_identity" "current" {}
2020
data "aws_region" "current" {}
2121
data "aws_ecr_authorization_token" "token" {}
2222

23-
module "dev" {
23+
module "data_qa" {
2424
source = "../../terraform"
2525
cloudfront_allowed_subnets = ["255.255.255.255/32"]
2626

2727
data_test_storage_bucket_name = "dqg-settings-dev"
28-
environment = "dev"
28+
environment = "demo"
2929
project = "provectus"
3030

3131
allure_report_image_uri = module.docker_image_allure_report.image_uri
@@ -35,7 +35,7 @@ module "dev" {
3535
web_acl_id = "arn:aws:wafv2:us-east-1:024975173233:global/webacl/demo-provectus-web-acl/c4517afa-629f-41ab-a4b9-a9645eb9b8dc"
3636
}
3737

38-
module "intg" {
38+
module "data_qa_intg" {
3939
source = "../../terraform"
4040
cloudfront_allowed_subnets = ["255.255.255.255/32"]
4141

0 commit comments

Comments
 (0)