File tree Expand file tree Collapse file tree 7 files changed +7
-18
lines changed Expand file tree Collapse file tree 7 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ locals {
21
21
22
22
has_incident_management_service = false
23
23
24
- feature_flags = [" foo" , " bar" ]
25
-
26
24
environment_configs = {
27
25
dev = module.dev_config
28
26
staging = module.staging_config
Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ output "environments" {
10
10
value = local. environments
11
11
}
12
12
13
- output "feature_flags" {
14
- value = local. feature_flags
15
- }
16
-
17
13
output "has_database" {
18
14
value = local. has_database
19
15
}
Original file line number Diff line number Diff line change @@ -78,6 +78,7 @@ data "aws_security_groups" "aws_services" {
78
78
module "database" {
79
79
source = " ../../modules/database"
80
80
name = " ${ local . prefix } ${ local . database_config . cluster_name } "
81
+ access_policy_name = " ${ local . prefix } ${ local . database_config . access_policy_name } "
81
82
app_access_policy_name = " ${ local . prefix } ${ local . database_config . app_access_policy_name } "
82
83
migrator_access_policy_name = " ${ local . prefix } ${ local . database_config . migrator_access_policy_name } "
83
84
# The following are not AWS infra resources and therefore do not need to be
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ locals {
5
5
has_database = true
6
6
has_incident_management_service = false
7
7
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
9
13
10
14
environment_configs = {
11
15
dev = module.dev_config
Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ output "environments" {
10
10
value = local. environments
11
11
}
12
12
13
- output "feature_flags" {
14
- value = local. feature_flags
15
- }
16
-
17
13
output "has_database" {
18
14
value = local. has_database
19
15
}
Original file line number Diff line number Diff line change @@ -16,14 +16,12 @@ locals {
16
16
# If enabled, the networks associated with this application's environments
17
17
# will have NAT gateways, which allows the service in the private subnet to
18
18
# make calls to the internet.
19
- has_external_non_aws_service = false
19
+ has_external_non_aws_service = true
20
20
21
21
has_incident_management_service = false
22
22
enable_autoscaling = true
23
23
hostname = " 0.0.0.0"
24
24
25
- feature_flags = [" foo" , " bar" ]
26
-
27
25
environment_configs = {
28
26
dev = module.dev_config
29
27
staging = module.staging_config
Original file line number Diff line number Diff line change @@ -10,10 +10,6 @@ output "environments" {
10
10
value = local. environments
11
11
}
12
12
13
- output "feature_flags" {
14
- value = local. feature_flags
15
- }
16
-
17
13
output "has_database" {
18
14
value = local. has_database
19
15
}
You can’t perform that action at this time.
0 commit comments