Skip to content

Instantly share code, notes, and snippets.

@daloulou
Last active December 15, 2020 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daloulou/47226a5bf959441e9febdb3dc90cb4af to your computer and use it in GitHub Desktop.
Save daloulou/47226a5bf959441e9febdb3dc90cb4af to your computer and use it in GitHub Desktop.
Terraform variables files
variable "example_ressource_group_name" {
type = string
default = "<your-resource-group-name>"
}
variable "azurerm_container_memory" {
type = number
default = 1
}
variable "azurerm_container_cpu" {
type = number
default = 0.5
}
variable "api_image" {
type = string
}
variable "example_api_dns" {
type = string
}
variable "example_app_url" {
type = string
}
variable "traefik_url" {
type = string
}
variable "example_storage_account_name" {
type = string
default = "<your-storage-account-name>"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment