Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.28 KB

File metadata and controls

52 lines (38 loc) · 1.28 KB
page_title morpheus_vro_integration Resource - terraform-provider-morpheus
subcategory
description Provides a vRealize Orchestrator integration resource

morpheus_vro_integration

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