Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 2.1 KB

File metadata and controls

54 lines (39 loc) · 2.1 KB
page_title subcategory description
catalystcenter Provider

catalystcenter Provider

The Cisco Catalyst Center provider is used to interact with Cisco Catalyst Center APIs (2.3.7.6). The provider needs to be configured with the proper credentials before it can be used.

Use the navigation to the left to read about the available resources.

Example Usage

The Catalyst Center SDK client could be generated with the following parameters:

# Configure provider with your Cisco Catalyst Center SDK credentials
provider "catalystcenter" {
  # Cisco Catalyst Center user name
  username = "admin"
  # it can be set using the environment variable CATALYST_BASE_URL

  # Cisco Catalyst Center password
  password = "admin123"
  # it can be set using the environment variable CATALYST_USERNAME

  # Cisco Catalyst Center base URL, FQDN or IP
  base_url = "https://172.168.196.2"
  # it can be set using the environment variable CATALYST_PASSWORD

  # Boolean to enable debugging
  debug = "false"
  # it can be set using the environment variable CATALYST_DEBUG

  # Boolean to enable or disable SSL certificate verification
  ssl_verify = "false"
  # it can be set using the environment variable CATALYST_SSL_VERIFY
}

Schema

Optional

  • base_url (String) Cisco Catalyst Center base URL, FQDN or IP. If not set, it uses the CATALYST_BASE_URL environment variable.
  • debug (String) Flag for Cisco Catalyst Center to enable debugging. If not set, it uses the CATALYST_DEBUG environment variable; defaults to false.
  • password (String, Sensitive) Cisco Catalyst Center password to authenticate. If not set, it uses the CATALYST_PASSWORD environment variable.
  • ssl_verify (String, Sensitive) Flag to enable or disable SSL certificate verification. If not set, it uses the CATALYST_SSL_VERIFY environment variable; defaults to true.
  • username (String, Sensitive) Cisco Catalyst Center username to authenticate. If not set, it uses the CATALYST_USERNAME environment variable.