New sample (converted from Bicep via OpenAI)
This commit is contained in:
57
quickstart/101-aci-linuxcontainer-public-ip/variables.tf
Normal file
57
quickstart/101-aci-linuxcontainer-public-ip/variables.tf
Normal file
@ -0,0 +1,57 @@
|
||||
variable "resource_group_location" {
|
||||
type = string
|
||||
default = "eastus"
|
||||
description = "Location for all resources."
|
||||
}
|
||||
|
||||
variable "resource_group_name_prefix" {
|
||||
type = string
|
||||
default = "rg"
|
||||
description = "Prefix of the resource group name that's combined with a random value so name is unique in your Azure subscription."
|
||||
}
|
||||
|
||||
variable "container_group_name_prefix" {
|
||||
type = string
|
||||
description = "Prefix of the container group name that's combined with a random value so name is unique in your Azure subscription."
|
||||
default = "acigroup"
|
||||
}
|
||||
|
||||
variable "container_name_prefix" {
|
||||
type = string
|
||||
description = "Prefix of the container name that's combined with a random value so name is unique in your Azure subscription."
|
||||
default = "aci"
|
||||
}
|
||||
|
||||
variable "image" {
|
||||
type = string
|
||||
description = "Container image to deploy. Should be of the form repoName/imagename:tag for images stored in public Docker Hub, or a fully qualified URI for other registries. Images from private registries require additional registry credentials."
|
||||
default = "mcr.microsoft.com/azuredocs/aci-helloworld"
|
||||
}
|
||||
|
||||
variable "port" {
|
||||
type = number
|
||||
description = "Port to open on the container and the public IP address."
|
||||
default = 80
|
||||
}
|
||||
|
||||
variable "cpu_cores" {
|
||||
type = number
|
||||
description = "The number of CPU cores to allocate to the container."
|
||||
default = 1
|
||||
}
|
||||
|
||||
variable "memory_in_gb" {
|
||||
type = number
|
||||
description = "The amount of memory to allocate to the container in gigabytes."
|
||||
default = 2
|
||||
}
|
||||
|
||||
variable "restart_policy" {
|
||||
type = string
|
||||
description = "The behavior of Azure runtime if container has stopped."
|
||||
default = "Always"
|
||||
validation {
|
||||
condition = contains(["Always", "Never", "OnFailure"], var.restart_policy)
|
||||
error_message = "The restart_policy must be one of the following: Always, Never, OnFailure."
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user