-
Notifications
You must be signed in to change notification settings - Fork 115
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
690d70e
commit 8dd0faa
Showing
1 changed file
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
layout: "nutanix" | ||
page_title: "NUTANIX: nutanix_unregister_cluster_v2 " | ||
sidebar_current: "docs-nutanix-unregister-cluster-v2" | ||
description: |- | ||
Unregister a registered remote cluster from the local cluster | ||
--- | ||
|
||
# nutanix_unregister_cluster_v2 | ||
|
||
Unregister a registered remote cluster from the local cluster. This process is asynchronous, creating an unregisteration task and returning its UUID. | ||
|
||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "nutanix_unregister_cluster_v2 " "pc"{ | ||
pc_ext_id = "<PC_UUID>" | ||
ext_id = "cluster uuid" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
The following arguments are supported: | ||
|
||
|
||
* `pc_ext_id`: -(Required) The external identifier of the domain manager (Prism Central) resource | ||
* `ext_id`: -(Required) Cluster UUID of a remote cluster. | ||
|
||
See detailed information in [Nutanix Unregister a Remote Cluster from Local Cluster Docs](https://developers.nutanix.com/api-reference?namespace=prism&version=v4.0#tag/DomainManager/operation/unregister). |