Updating terraform

This commit is contained in:
2025-02-23 13:16:25 -06:00
parent 65aa31a66d
commit bafb812627
9 changed files with 177 additions and 213 deletions

View File

@@ -5,8 +5,8 @@ locals {
}
container_app_app_container_image = {
test = "noahspan/flying-app:v0.0.1"
prod = "noahspan/flying-app:v0.0.1"
test = "noahspan/flying-app:v1.0.0"
prod = "noahspan/flying-app:v1.0.0"
}
container_app_app_container_name = {
@@ -20,8 +20,8 @@ locals {
}
container_app_api_container_image = {
test = "noahspan/flying-api:v0.0.1"
prod = "noahspan/flying-api:v0.0.1"
test = "noahspan/flying-api:v1.0.0"
prod = "noahspan/flying-api:v1.0.0"
}
container_app_api_container_name = {
@@ -29,11 +29,6 @@ locals {
prod = "flying-api-prod"
}
container_app_api_dapr_app_id = {
test = "flyingapitest"
prod = "flyingpapiprod"
}
container_app_environment_name = {
test = "flying-test"
prod = "flying-prod"
@@ -63,4 +58,9 @@ locals {
test = "noahspanflyingtest"
prod = "noahspanflyingprod"
}
storage_tables = {
test = ["logs", "pilots"]
prod = ["logs", "pilots"]
}
}

View File

@@ -22,10 +22,6 @@ output "container_app_api_container_name" {
value = local.container_app_api_container_name[var.environment]
}
output "container_app_api_dapr_app_id" {
value = local.container_app_api_dapr_app_id[var.environment]
}
output "container_app_environment_name" {
value = local.container_app_environment_name[var.environment]
}
@@ -48,4 +44,8 @@ output "pilots_feature_flag_active" {
output "storage_account_name" {
value = local.storage_account_name[var.environment]
}
output "storage_tables" {
value = local.storage_tables[var.environment]
}