10 lines
247 B
HCL
10 lines
247 B
HCL
variable "name" {
|
|
description = "The name of the application"
|
|
type = string
|
|
}
|
|
|
|
variable "image" {
|
|
description = "The image to run"
|
|
type = string
|
|
default = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
|
|
}
|