97 lines
1.8 KiB
HCL
97 lines
1.8 KiB
HCL
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"]
|
|
}
|
|
} |