Skip to main content

Disconnecting a resource manager

Use the Terraform destroy command to disconnect (remove) a resource manager from Lenovo XClarity Orchestrator.

Usage

resource "lxco_manager" "destroy" {
uuid = string
}

Example

The following example removes an XClarity Administrator resource manager.

terraform {
required_providers {
lxco = {
version = "0.1"
source = "lenovo.com/xclarity/lxco"
}
}
}

provider "lxco" {
host = "192.0.2.0"
# username = ""
# password = ""
}

resource "lxco_manager" "destroy" {
uuid = "8D735FCEFBCD49118C68169312166C68"
}

Inputs

NameRequired / OptionalTypeDescription
uuidRequiredStringResource manager UUID

Outputs

None