-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars
36 lines (33 loc) · 1004 Bytes
/
terraform.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Base Information
resource_group_name = "example-tf-aci"
location = "eastus"
environment = "non-prod-testing"
tags = {
User = "who created it?"
Type = "ACI"
Project = "My test Project"
CreatedBy = "Terraform (local az-cli)"
}
# Container Group Information
container_group_name = "aci-containergroup"
ip_address_type = "public"
dns_name_label = "aci-test-container-hello-world"
os_type = "linux"
# Container Information
container_name = "aci-nginx"
container_image = "nginx"
container_cpu = "1"
container_mem = "1"
container_port_http = "80"
container_port_protocol_http = "TCP"
container_port_https = "443"
container_port_protocol_https = "TCP"
# Storage Information
storage_account_name = "xxxstorageaccount"
storage_account_kind = "StorageV2"
storage_account_tier = "standard"
storage_account_replication = "LRS"
storage_account_https_traffic_only = "true"
storage_account_access_tier = "Hot"
storage_account_tls_version = "TLS1_2"
storage_account_shared_access_key_enabled = "true"