Skip to content

Commit 6715cec

Browse files
committed
various small fixes
1 parent 5afe3c9 commit 6715cec

File tree

7 files changed

+7
-18
lines changed

7 files changed

+7
-18
lines changed

infra/analytics/app-config/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ locals {
2121

2222
has_incident_management_service = false
2323

24-
feature_flags = ["foo", "bar"]
25-
2624
environment_configs = {
2725
dev = module.dev_config
2826
staging = module.staging_config

infra/analytics/app-config/outputs.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ output "environments" {
1010
value = local.environments
1111
}
1212

13-
output "feature_flags" {
14-
value = local.feature_flags
15-
}
16-
1713
output "has_database" {
1814
value = local.has_database
1915
}

infra/analytics/database/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ data "aws_security_groups" "aws_services" {
7878
module "database" {
7979
source = "../../modules/database"
8080
name = "${local.prefix}${local.database_config.cluster_name}"
81+
access_policy_name = "${local.prefix}${local.database_config.access_policy_name}"
8182
app_access_policy_name = "${local.prefix}${local.database_config.app_access_policy_name}"
8283
migrator_access_policy_name = "${local.prefix}${local.database_config.migrator_access_policy_name}"
8384
# The following are not AWS infra resources and therefore do not need to be

infra/api/app-config/main.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ locals {
55
has_database = true
66
has_incident_management_service = false
77

8-
feature_flags = ["foo", "bar"]
8+
# Whether or not the application depends on external non-AWS services.
9+
# If enabled, the networks associated with this application's environments
10+
# will have NAT gateways, which allows the service in the private subnet to
11+
# make calls to the internet.
12+
has_external_non_aws_service = true
913

1014
environment_configs = {
1115
dev = module.dev_config

infra/api/app-config/outputs.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ output "environments" {
1010
value = local.environments
1111
}
1212

13-
output "feature_flags" {
14-
value = local.feature_flags
15-
}
16-
1713
output "has_database" {
1814
value = local.has_database
1915
}

infra/frontend/app-config/main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,12 @@ locals {
1616
# If enabled, the networks associated with this application's environments
1717
# will have NAT gateways, which allows the service in the private subnet to
1818
# make calls to the internet.
19-
has_external_non_aws_service = false
19+
has_external_non_aws_service = true
2020

2121
has_incident_management_service = false
2222
enable_autoscaling = true
2323
hostname = "0.0.0.0"
2424

25-
feature_flags = ["foo", "bar"]
26-
2725
environment_configs = {
2826
dev = module.dev_config
2927
staging = module.staging_config

infra/frontend/app-config/outputs.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ output "environments" {
1010
value = local.environments
1111
}
1212

13-
output "feature_flags" {
14-
value = local.feature_flags
15-
}
16-
1713
output "has_database" {
1814
value = local.has_database
1915
}

0 commit comments

Comments
 (0)