-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdev.tf
More file actions
34 lines (29 loc) · 1.32 KB
/
dev.tf
File metadata and controls
34 lines (29 loc) · 1.32 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
32
33
34
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 = "platform-test-dev.navateam.com"
enable_https = true
has_database = local.has_database
has_incident_management_service = local.has_incident_management_service
enable_notifications = local.enable_notifications
# 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
service_override_extra_environment_variables = {
ENABLE_LOOKBOOK = "true"
}
# Uncomment to override default feature flag values
feature_flag_overrides = {
BAR = true
}
}