Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 1.35 KB

vro_integration.md

File metadata and controls

53 lines (39 loc) · 1.35 KB
page_title subcategory description
morpheus_vro_integration Resource - terraform-provider-morpheus
Provides a vRealize Orchestrator integration resource

morpheus_vro_integration (Resource)

Provides a vRealize Orchestrator integration resource

Example Usage

resource "morpheus_vro_integration" "tf_example_vro_integration" {
  name      = "tfexample vro"
  enabled   = true
  url       = "https://myvro/vco/api"
  username  = "my-vro-username"
  password  = "my-vro-password"
  auth_type = "basic"
  tenant    = "vsphere.local"
}

Schema

Required

  • auth_type (String) The authentication type for the vRO integration
  • name (String) The name of the vRO integration
  • password (String, Sensitive) The password of the account used to connect to vRO
  • tenant (String) The tenant of the account used to connect to vRO
  • url (String) The url of the vRO server
  • username (String) The username of the account used to connect to vRO

Optional

  • enabled (Boolean) Whether the vRO integration is enabled

Read-Only

  • id (String) The ID of the vRO integration

Import

Import is supported using the following syntax:

terraform import morpheus_vro_integration.tf_example_vro_integration 1