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
Merge pull request #139 from lgatellier/feat/variable-vmrpid
Handle new vmrpid variable -
Add new vmrpid variable to allow users to provide a resource pool id instead of a resource pool path.
This can be used, for exemple, to link the vSphere VM to a vsphere_vapp_container also managed by terraform.
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -175,8 +175,14 @@ variable "dc" {
175
175
description="Name of the datacenter you want to deploy the VM to."
176
176
}
177
177
178
+
variable"vmrpid" {
179
+
description="ID of cluster resource pool that VM will be deployed to. you use following to choose default pool in the cluster (esxi1) or (Cluster)/Resources."
180
+
default=""
181
+
}
182
+
178
183
variable"vmrp" {
179
184
description="Cluster resource pool that VM will be deployed to. you use following to choose default pool in the cluster (esxi1) or (Cluster)/Resources."
0 commit comments