Skip to content

Commit 6746092

Browse files
authored
Add files via upload
Example of adding a ESXi host to a Multi-AD environment with the option to specify the AD
1 parent 9191e27 commit 6746092

File tree

2 files changed

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

2 files changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
resource "oci_ocvp_esxi_host" "test_esxi_host" {
2+
cluster_id = var.SDDC_Cluster_OCID
3+
compute_availability_domain = var.AD
4+
display_name = var.ESXi_hostname
5+
host_shape_name = var.shape
6+
host_ocpu_count = var.OCPU_count
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
provider oci {
2+
region = var.region
3+
}

0 commit comments

Comments
 (0)