Connecting an XClarity Administrator resource manager
Use this definition to connect (add) a Lenovo XClarity Administrator resource manager to Lenovo XClarity Orchestrator.
Usage
resource "lxco_manager_resource" "string" {
auth_type = "string"
enabledriveanalytics = Boolean
hostname = "string"
password = "string"
port = integer
type = "string"
username = "string"
}
Example
The following example connects 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 = ""
}
# Connect an XClarity Administrator resource manager
resource "lxco_manager_resource" "LXCA_1" {
auth_type = "basic"
enabledriveanalytics = true
hostname = "109.0.2.10"
password = "********"
port = 443
type = "XClarity Administrator"
username = "userid"
}
Inputs
Name | Required / Optional | Type | Description | ||
---|---|---|---|---|---|
auth_type | Required | String | Authentication type. This is always basic. | ||
enabledriveanalytics | Required | String | Indicates whether to enable collecting drive-analytics data daily for ThinkSystem and ThinkAgile devices. Drive analytics data is used for and is used for predictive analytics. This can be one of the following values.
| ||
hostname | Required | String | Resource manager host name | ||
password | Required | String | Password to use for basic authentication | ||
port | Required | Integer | Resource manager port | ||
type | Required | String | Type of resource manager. This value is always XClarity Administrator. | ||
username | Required | String | Username to use for basic authentication | ||
uuid | Required | String | Resource manager UUID |
Outputs
None
Give documentation feedback