-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1c455c
commit 1afbe50
Showing
68 changed files
with
2,721 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "citrix_nutanix_hypervisor_resource_pool Resource - citrix" | ||
subcategory: "" | ||
description: |- | ||
Manages a Nutanix hypervisor resource pool. | ||
--- | ||
|
||
# citrix_nutanix_hypervisor_resource_pool (Resource) | ||
|
||
Manages a Nutanix hypervisor resource pool. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
resource "citrix_nutanix_hypervisor_resource_pool" "example-nutanix-hypervisor-resource-pool" { | ||
name = "example-nutanix-hypervisor-resource-pool" | ||
hypervisor = citrix_nutanix_hypervisor.example-nutanix-hypervisor.id | ||
networks = [ | ||
"<network 1 name>", | ||
"<network 2 name>" | ||
] | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `hypervisor` (String) Id of the hypervisor for which the resource pool needs to be created. | ||
- `name` (String) Name of the resource pool. Name should be unique across all hypervisors. | ||
- `networks` (List of String) List of networks for allocating resources. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) GUID identifier of the resource pool. | ||
|
||
## Import | ||
|
||
Import is supported using the following syntax: | ||
|
||
```shell | ||
# Hypervisor Resource Pool can be imported with the format HypervisorId,HypervisorResourcePoolId | ||
terraform import citrix_nutanix_hypervisor_resource_pool.example-nutanix-hypervisor-resource-pool sbf0dc45-5c42-45a0-a15d-a3df4ff5da8c,ce571dd9-1a46-4b85-891c-484423322c53 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.