Connecting a VMware vRealize Operations Manager resource manager
Use this definition to connect (add) a VMware vRealize Operations Manager resource manager to Lenovo XClarity Orchestrator.
Usage
resource "lxco_manager_resource" "string" {
authS_source = "string"
hostname = "string"
password = "string"
port = integer
type = "string"
username = "string"
}
Example
The following example connects a vRealize Operations Manager resource manager.
terraform {
required_providers {
lxco = {
version = "0.1"
source = "lenovo.com/xclarity/lxco"
}
}
}
provider "lxco" {
host = "192.0.2.0"
# username = ""
# password = ""
}
# Connect a VMware vRealize Operations Manager resource manager
resource "lxco_manager_resource" "VROPS_1" {
auth_source = "Local Users"
hostname = "192.0.2.10"
password = "********"
port = 443
type = "vRealize Operations Manager"
username = "userid"
}
Inputs
Name | Required / Optional | Type | Description | ||
---|---|---|---|---|---|
auth_source | Optional | String | Name of the authentication source for users and groups | ||
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 vRealize Operations Manager. | ||
username | Required | String | Username to use for basic authentication |
Outputs
None
Give documentation feedback