Feature/1 add projects and about pages (#2)
* adding api * adding projects page * adding project page * updating terraform * updating terraform * adding github workflows
This commit was merged in pull request #2.
This commit is contained in:
47
infrastructure/config/outputs.tf
Normal file
47
infrastructure/config/outputs.tf
Normal file
@@ -0,0 +1,47 @@
|
||||
output "container_app_app_name" {
|
||||
value = local.container_app_app_name[var.environment]
|
||||
}
|
||||
|
||||
output "container_app_app_container_image" {
|
||||
value = local.container_app_app_container_image[var.environment]
|
||||
}
|
||||
|
||||
output "container_app_app_container_name" {
|
||||
value = local.container_app_app_container_name[var.environment]
|
||||
}
|
||||
|
||||
output "container_app_api_name" {
|
||||
value = local.container_app_api_name[var.environment]
|
||||
}
|
||||
|
||||
output "container_app_api_container_image" {
|
||||
value = local.container_app_api_container_image[var.environment]
|
||||
}
|
||||
|
||||
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]
|
||||
}
|
||||
|
||||
output "custom_domain_count" {
|
||||
value = local.custom_domain_count[var.environment]
|
||||
}
|
||||
|
||||
output "log_analytics_workspace_name" {
|
||||
value = local.log_analytics_workspace_name[var.environment]
|
||||
}
|
||||
|
||||
output "storage_account_name" {
|
||||
value = local.storage_account_name[var.environment]
|
||||
}
|
||||
|
||||
output "storage_tables" {
|
||||
value = local.storage_tables[var.environment]
|
||||
}
|
||||
Reference in New Issue
Block a user