File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ data "external" "current-info" {
4343}
4444
4545data "aws_s3_bucket" "source-data-bucket" {
46- count = local. is_dev_env ? 1 : 0
46+ count = local. is_dev_env && ! local . is_sandbox_env ? 1 : 0
4747 bucket = " ${ local . shared_prefix } -source-data-bucket"
4848}
4949
5050data "aws_kms_key" "glue" {
51- count = local. is_dev_env ? 1 : 0
51+ count = local. is_dev_env && ! local . is_sandbox_env ? 1 : 0
5252 key_id = " alias/${ local . shared_prefix } -glue"
5353}
Original file line number Diff line number Diff line change @@ -10,5 +10,5 @@ module "firehose__processor" {
1010 destination = " splunk"
1111 reporting_bucket_arn = local. reporting_bucket_arn
1212 reporting_kms_arn = local. reporting_kms_arn
13- reporting_infra_toggle = local. is_dev_env
13+ reporting_infra_toggle = local. is_dev_env && ! local . is_sandbox_env
1414}
You can’t perform that action at this time.
0 commit comments