#az resource list -o table variable "location" { default = "uksouth" } #az resource list -o table variable "resource_group" { default = "UI-SPP-DEV-001" } #az network vnet list -o table variable "vnet" { default = "UI-SPP-DEV-001-vnet" } #az network vnet show -g nottsdemo2 -n nottsdemo2-vnet | jq .addressSpace.addressPrefixes #az network vnet show -g nottsdemo2 -n nottsdemo2-vnet -o table #az network vnet subnet list -g nottsdemo2 --vnet-name nottsdemo2-vnet -o table variable "subnet" { default = "default" #the default subnet is named default, thus we set the default value of the variable to have value default - confusing } # az storage blob list -c "disk" -o table variable "os_image" { #default = "centos7ocf" default = "cfme-azure-5.10.11.0-1.x86_64" } # set admin user/password/key variable "admin_username" { default = "ocfadmin" } variable "admin_password" { default = "Password1234!" } variable "admin_ssh_pub_key" { type = "string" default = "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAm+l9n70tSvow56eOLhDZT8VLCmU9MCjUa7d2v0fH2ix/mdWy+RUo9c24U9WJmBlxpAmMDpSxlFcOpBwk1y+tWC/24YJ+m0/6YGWTzbl84GCjdBfrWcTuV5MFYvkYfq8lx3VESyZrYVmoC9Shwtj825YjfVpWqWvFw2kJznyOHWSGv60j6AJyzoT8rWCt4tSusEVzwup7UWF8TDIB6GXO3hqBZcCo3mfyuWkAswkEbX8SKIXqlNUZWMsxdS5ZpodigG6pj9fIsob8P+PxXF7YQiPo4W1uDHGoh0033oLb2fQULs4VjwqNVUE4dKkruFdNupBNCY3BJWHMT/mDOnUiww==" } variable "admin_ssh_pub_key_file" { default = "~/keys/toby@TOBY-L19.openssh.pub" } # variables to differentiate resource names and environments variable "customer" { default = "UONtest" }