updating modules

This commit is contained in:
2025-08-18 09:14:38 -05:00
parent 821f8e9eb8
commit bc6720b56e
3 changed files with 77 additions and 33 deletions

View File

@@ -3,13 +3,23 @@ variable "app_subdomain_name" {
}
variable "containers" {
type = list(object({
name = string
image = string
cpu = string
memory = string
}))
default = []
type = list(object({
command = optional(string)
cpu = optional(string)
env = optional(list(object({
name = string
secret_name = optional(string)
value = optional(string)
})))
image = string
memory = optional(string)
name = string
volume_mounts = optional(list(object({
name = string
path = string
})))
}))
}
variable "container_app_name" {
@@ -21,33 +31,16 @@ variable "container_app_environment_id" {
}
variable "custom_domain_count" {
type = string
}
variable "init_containers" {
default = []
type = list(object({
name = string
image = string
cpu = string
memory = string
}))
}
variable "registry_password" {
sensitive = true
type = string
}
variable "registry_username" {
type = string
}
variable "domain_name" {
default = 0
type = string
}
variable "dns_zone_resource_group" {
default = ""
type = string
}
variable "domain_name" {
type = string
}
@@ -70,6 +63,35 @@ variable "ingress_transport" {
type = string
}
variable "init_containers" {
default = []
type = list(object({
command = optional(string)
cpu = optional(string)
envs = optional(list(object({
name = string
secret_name = optional(string)
value = optional(string)
})))
image = string
memory = optional(string)
name = string
volume_mounts = optional(list(object({
name = string
path = string
})))
}))
}
variable "registry_password" {
sensitive = true
type = string
}
variable "registry_username" {
type = string
}
variable "registry_password_secret_name" {
default = "docker-io-password"
type = string
@@ -93,6 +115,7 @@ variable "secrets" {
}
variable "storage_account_primary_connection_string" {
default = ""
type = string
}