This repository has been archived on 2024-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
python-azure-example/terraform/variables.tf

11 lines
247 B
Terraform
Raw Permalink Normal View History

2024-03-01 14:11:34 +00:00
variable "name" {
description = "The name of the application"
type = string
}
2024-03-01 21:05:49 +00:00
variable "image" {
description = "The image to run"
type = string
default = "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest"
}