-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdev.tf
More file actions
31 lines (27 loc) · 1.38 KB
/
dev.tf
File metadata and controls
31 lines (27 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module "dev_config" {
source = "./env-config"
project_name = local.project_name
app_name = local.app_name
default_region = module.project_config.default_region
environment = "dev"
network_name = "dev"
domain_name = "${local.app_name}.${module.project_config.network_configs["dev"].domain_config.hosted_zone}"
enable_https = false
has_database = local.has_database
has_incident_management_service = local.has_incident_management_service
enable_notifications = local.enable_notifications
enable_document_data_extraction = local.enable_document_data_extraction
# Enable and configure identity provider.
enable_identity_provider = local.enable_identity_provider
# Support local development against the dev instance.
extra_identity_provider_callback_urls = ["http://localhost"]
extra_identity_provider_logout_urls = ["http://localhost"]
# Enables ECS Exec access for debugging or jump access.
# See https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html
# Defaults to `false`. Uncomment the next line to enable.
# enable_command_execution = true
# Uncomment to override default feature flag values
# feature_flag_overrides = {
# BAR = true
# }
}