updating infrastructure container apps environment
Some checks failed
Main / changes (push) Has been cancelled
Main / build-api (push) Has been cancelled
Main / deploy-api (push) Has been cancelled
Main / build-app (push) Has been cancelled
Main / deploy-app (push) Has been cancelled

This commit is contained in:
2026-05-11 20:41:53 -05:00
parent a7f8bd06a7
commit f132d73b92
8 changed files with 62 additions and 200 deletions

View File

@@ -1,97 +1,4 @@
locals {
container_app_app_name = {
test = "root-app-test"
prod = "root-app-prod"
}
container_app_app_container_image = {
test = "noahspan/root-app:v1.0.0"
prod = "noahspan/root-app:v1.0.0"
}
container_app_app_container_name = {
test = "root-app-test"
prod = "root-app-prod"
}
container_app_api_name = {
test = "root-api-test"
prod = "root-api-prod"
}
container_app_api_container_image = {
test = "noahspan/root-api:v1.0.0"
prod = "noahspan/root-api:v1.0.0"
}
container_app_api_container_name = {
test = "root-api-test"
prod = "root-api-prod"
}
container_app_api_dapr_app_id = {
test = "rootapitest"
prod = "rootpapiprod"
}
container_app_environment_name = {
test = "root-test"
prod = "root-prod"
}
custom_domain_count = {
test = 0
prod = 1
}
log_analytics_workspace_name = {
test = "root-log-analytics-workspace-test"
prod = "root-log-analytics-workspace-prod"
}
static_websites = {
test = [
{
error_404_document = "custom_not_found.html"
index_document = "index.html"
}
]
prod = [
{
error_404_document = "custom_not_found.html"
index_document = "index.html"
}
]
}
storage_account_name = {
test = "noahspanroottest"
prod = "noahspanrootprod"
}
storage_blobs = {
test = [
{
name = "web"
storage_container_name = "$web"
type = "Block"
content_type = "text/html"
source = "index.html"
}
]
prod = [
{
name = "web"
storage_container_name = "$web"
type = "Block"
content_type = "text/html"
source = "index.html"
}
]
}
storage_tables = {
test = ["projects"]
prod = ["projects"]
}
module "container_app_environment" {
source = "./container_app_environment"
environment = var.environment
}