You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: quickstart/101-aci-linuxcontainer-public-ip/readme.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@ This template deploys an Azure Container Instance with a public IP address.
20
20
|`cpu_cores`| Quantity of CPU cores to allocate to the container. | 1 |
21
21
|`memory_in_gb`| Amount of memory to allocate to the container in gigabytes. | 2 |
22
22
|`restart_policy`| Behavior of Azure runtime if container has stopped. | Always |
23
+
|`zone`| The availability zone to deploy the container group into. If not specified, the container group is nonzonal and might be deployed into any zone. | (empty) |
Copy file name to clipboardExpand all lines: quickstart/101-aci-linuxcontainer-public-ip/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -55,3 +55,9 @@ variable "restart_policy" {
55
55
error_message="The restart_policy must be one of the following: Always, Never, OnFailure."
56
56
}
57
57
}
58
+
59
+
variable"zone" {
60
+
type=string
61
+
description="The availability zone to deploy the container group into. If not specified, the container group is nonzonal and might be deployed into any zone."
0 commit comments