Skip to content

Commit 9191e27

Browse files
authored
Create vars.tf
1 parent 39fbb90 commit 9191e27

File tree

1 file changed

+11
-0
lines changed
  • cloud-infrastructure/vmware-solutions/oracle-cloud-vmware-solution/OCVS-Terraform-automation/AddHost-MultiAD

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
variable region {default = "your_region"}
2+
variable SDDC_Cluster_OCID {default = "OCID of your Cluster (not SDDC)"}
3+
variable ESXi_hostname {default = "ESXi-hostname"}
4+
variable shape {default = "BM.DenseIO.E4.128"} # possible: "BM.DenseIO.E4.128" or "BM.DenseIO2.52"
5+
variable OCPU_count {default = 32} # For AMD only, possible: 32, 64 or 128
6+
7+
# You need to specify the full name of your AD!!
8+
# so for example "EU-FRANKFURT-1-AD-3" it NOT correct, it need to look like "ABCd:EU-FRANKFURT-1-AD-3"
9+
# You can run the below command from the OCI CLI or cloud shell to see your AD names:
10+
# oci iam availability-domain list
11+
variable AD {default = "your_full-region-and-AD-name"}

0 commit comments

Comments
 (0)