vra.Integration
Explore with Pulumi AI
Creates a VMware vRealize Automation Integration resource.
Example Usage
S
The following example shows how to create an Integration resource:
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.Integration("this", {
description: "SaltStack Integration",
integrationProperties: {
hostName: _var.hostname,
},
integrationType: "saltstack",
privateKeyId: _var.username,
privateKey: _var.password,
tags: [{
key: "created_by",
value: "vra-terraform-provider",
}],
});
import pulumi
import pulumi_vra as vra
this = vra.Integration("this",
description="SaltStack Integration",
integration_properties={
"hostName": var["hostname"],
},
integration_type="saltstack",
private_key_id=var["username"],
private_key=var["password"],
tags=[{
"key": "created_by",
"value": "vra-terraform-provider",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vra.NewIntegration(ctx, "this", &vra.IntegrationArgs{
Description: pulumi.String("SaltStack Integration"),
IntegrationProperties: pulumi.StringMap{
"hostName": pulumi.Any(_var.Hostname),
},
IntegrationType: pulumi.String("saltstack"),
PrivateKeyId: pulumi.Any(_var.Username),
PrivateKey: pulumi.Any(_var.Password),
Tags: vra.IntegrationTagArray{
&vra.IntegrationTagArgs{
Key: pulumi.String("created_by"),
Value: pulumi.String("vra-terraform-provider"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vra = Pulumi.Vra;
return await Deployment.RunAsync(() =>
{
var @this = new Vra.Integration("this", new()
{
Description = "SaltStack Integration",
IntegrationProperties =
{
{ "hostName", @var.Hostname },
},
IntegrationType = "saltstack",
PrivateKeyId = @var.Username,
PrivateKey = @var.Password,
Tags = new[]
{
new Vra.Inputs.IntegrationTagArgs
{
Key = "created_by",
Value = "vra-terraform-provider",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.Integration;
import com.pulumi.vra.IntegrationArgs;
import com.pulumi.vra.inputs.IntegrationTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var this_ = new Integration("this", IntegrationArgs.builder()
.description("SaltStack Integration")
.integrationProperties(Map.of("hostName", var_.hostname()))
.integrationType("saltstack")
.privateKeyId(var_.username())
.privateKey(var_.password())
.tags(IntegrationTagArgs.builder()
.key("created_by")
.value("vra-terraform-provider")
.build())
.build());
}
}
resources:
this:
type: vra:Integration
properties:
description: SaltStack Integration
integrationProperties:
hostName: ${var.hostname}
integrationType: saltstack
privateKeyId: ${var.username}
privateKey: ${var.password}
tags:
- key: created_by
value: vra-terraform-provider
Create Integration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
@overload
def Integration(resource_name: str,
args: IntegrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Integration(resource_name: str,
opts: Optional[ResourceOptions] = None,
integration_properties: Optional[Mapping[str, str]] = None,
integration_type: Optional[str] = None,
associated_cloud_account_ids: Optional[Sequence[str]] = None,
certificate: Optional[str] = None,
custom_properties: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
integration_id: Optional[str] = None,
name: Optional[str] = None,
private_key: Optional[str] = None,
private_key_id: Optional[str] = None,
tags: Optional[Sequence[IntegrationTagArgs]] = None)
func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
public Integration(String name, IntegrationArgs args)
public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
type: vra:Integration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var integrationResource = new Vra.Integration("integrationResource", new()
{
IntegrationProperties =
{
{ "string", "string" },
},
IntegrationType = "string",
AssociatedCloudAccountIds = new[]
{
"string",
},
Certificate = "string",
CustomProperties =
{
{ "string", "string" },
},
Description = "string",
IntegrationId = "string",
Name = "string",
PrivateKey = "string",
PrivateKeyId = "string",
Tags = new[]
{
new Vra.Inputs.IntegrationTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vra.NewIntegration(ctx, "integrationResource", &vra.IntegrationArgs{
IntegrationProperties: pulumi.StringMap{
"string": pulumi.String("string"),
},
IntegrationType: pulumi.String("string"),
AssociatedCloudAccountIds: pulumi.StringArray{
pulumi.String("string"),
},
Certificate: pulumi.String("string"),
CustomProperties: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
IntegrationId: pulumi.String("string"),
Name: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyId: pulumi.String("string"),
Tags: vra.IntegrationTagArray{
&vra.IntegrationTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var integrationResource = new Integration("integrationResource", IntegrationArgs.builder()
.integrationProperties(Map.of("string", "string"))
.integrationType("string")
.associatedCloudAccountIds("string")
.certificate("string")
.customProperties(Map.of("string", "string"))
.description("string")
.integrationId("string")
.name("string")
.privateKey("string")
.privateKeyId("string")
.tags(IntegrationTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
integration_resource = vra.Integration("integrationResource",
integration_properties={
"string": "string",
},
integration_type="string",
associated_cloud_account_ids=["string"],
certificate="string",
custom_properties={
"string": "string",
},
description="string",
integration_id="string",
name="string",
private_key="string",
private_key_id="string",
tags=[{
"key": "string",
"value": "string",
}])
const integrationResource = new vra.Integration("integrationResource", {
integrationProperties: {
string: "string",
},
integrationType: "string",
associatedCloudAccountIds: ["string"],
certificate: "string",
customProperties: {
string: "string",
},
description: "string",
integrationId: "string",
name: "string",
privateKey: "string",
privateKeyId: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: vra:Integration
properties:
associatedCloudAccountIds:
- string
certificate: string
customProperties:
string: string
description: string
integrationId: string
integrationProperties:
string: string
integrationType: string
name: string
privateKey: string
privateKeyId: string
tags:
- key: string
value: string
Integration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Integration resource accepts the following input properties:
- Integration
Properties Dictionary<string, string> - Integration specific properties supplied in as name value pairs.
- Integration
Type string - Integration type.
- Associated
Cloud List<string>Account Ids - Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- Custom
Properties Dictionary<string, string> - Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- Integration
Id string - (Optional) The id of the integration.
- Name string
- The name of the integration.
- Private
Key string - Secret access key or password to be used to authenticate with the integration.
- Private
Key stringId - Access key id or username to be used to authenticate with the integration.
- List<Integration
Tag> - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
- Integration
Properties map[string]string - Integration specific properties supplied in as name value pairs.
- Integration
Type string - Integration type.
- Associated
Cloud []stringAccount Ids - Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- Custom
Properties map[string]string - Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- Integration
Id string - (Optional) The id of the integration.
- Name string
- The name of the integration.
- Private
Key string - Secret access key or password to be used to authenticate with the integration.
- Private
Key stringId - Access key id or username to be used to authenticate with the integration.
- []Integration
Tag Args - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
- integration
Properties Map<String,String> - Integration specific properties supplied in as name value pairs.
- integration
Type String - Integration type.
- associated
Cloud List<String>Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- custom
Properties Map<String,String> - Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integration
Id String - (Optional) The id of the integration.
- name String
- The name of the integration.
- private
Key String - Secret access key or password to be used to authenticate with the integration.
- private
Key StringId - Access key id or username to be used to authenticate with the integration.
- List<Integration
Tag> - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
- integration
Properties {[key: string]: string} - Integration specific properties supplied in as name value pairs.
- integration
Type string - Integration type.
- associated
Cloud string[]Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate string
- Certificate to be used to connect to the integration.
- custom
Properties {[key: string]: string} - Additional custom properties that may be used to extend the Integration.
- description string
- A human-friendly description.
- integration
Id string - (Optional) The id of the integration.
- name string
- The name of the integration.
- private
Key string - Secret access key or password to be used to authenticate with the integration.
- private
Key stringId - Access key id or username to be used to authenticate with the integration.
- Integration
Tag[] - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
- integration_
properties Mapping[str, str] - Integration specific properties supplied in as name value pairs.
- integration_
type str - Integration type.
- associated_
cloud_ Sequence[str]account_ ids - Ids of the cloud accounts to associate with this integration.
- certificate str
- Certificate to be used to connect to the integration.
- custom_
properties Mapping[str, str] - Additional custom properties that may be used to extend the Integration.
- description str
- A human-friendly description.
- integration_
id str - (Optional) The id of the integration.
- name str
- The name of the integration.
- private_
key str - Secret access key or password to be used to authenticate with the integration.
- private_
key_ strid - Access key id or username to be used to authenticate with the integration.
- Sequence[Integration
Tag Args] - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
- integration
Properties Map<String> - Integration specific properties supplied in as name value pairs.
- integration
Type String - Integration type.
- associated
Cloud List<String>Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- custom
Properties Map<String> - Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integration
Id String - (Optional) The id of the integration.
- name String
- The name of the integration.
- private
Key String - Secret access key or password to be used to authenticate with the integration.
- private
Key StringId - Access key id or username to be used to authenticate with the integration.
- List<Property Map>
- A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Integration resource produces the following output properties:
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Integration
Link> - HATEOAS of entity.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Integration
Link - HATEOAS of entity.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Integration
Link> - HATEOAS of entity.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Integration
Link[] - HATEOAS of entity.
- org
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created_
at str - Date when the entity was created. The date is in ISO 8601 and UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Integration
Link] - HATEOAS of entity.
- org_
id str - The id of the organization this entity belongs to.
- owner str
- Email of the user that owns the entity.
- updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links List<Property Map>
- HATEOAS of entity.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Look up Existing Integration Resource
Get an existing Integration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IntegrationState, opts?: CustomResourceOptions): Integration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
associated_cloud_account_ids: Optional[Sequence[str]] = None,
certificate: Optional[str] = None,
created_at: Optional[str] = None,
custom_properties: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
integration_id: Optional[str] = None,
integration_properties: Optional[Mapping[str, str]] = None,
integration_type: Optional[str] = None,
links: Optional[Sequence[IntegrationLinkArgs]] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
owner: Optional[str] = None,
private_key: Optional[str] = None,
private_key_id: Optional[str] = None,
tags: Optional[Sequence[IntegrationTagArgs]] = None,
updated_at: Optional[str] = None) -> Integration
func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
public static Integration get(String name, Output<String> id, IntegrationState state, CustomResourceOptions options)
resources: _: type: vra:Integration get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Associated
Cloud List<string>Account Ids - Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Custom
Properties Dictionary<string, string> - Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- Integration
Id string - (Optional) The id of the integration.
- Integration
Properties Dictionary<string, string> - Integration specific properties supplied in as name value pairs.
- Integration
Type string - Integration type.
- Links
List<Integration
Link> - HATEOAS of entity.
- Name string
- The name of the integration.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Private
Key string - Secret access key or password to be used to authenticate with the integration.
- Private
Key stringId - Access key id or username to be used to authenticate with the integration.
- List<Integration
Tag> - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- Associated
Cloud []stringAccount Ids - Ids of the cloud accounts to associate with this integration.
- Certificate string
- Certificate to be used to connect to the integration.
- Created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- Custom
Properties map[string]string - Additional custom properties that may be used to extend the Integration.
- Description string
- A human-friendly description.
- Integration
Id string - (Optional) The id of the integration.
- Integration
Properties map[string]string - Integration specific properties supplied in as name value pairs.
- Integration
Type string - Integration type.
- Links
[]Integration
Link Args - HATEOAS of entity.
- Name string
- The name of the integration.
- Org
Id string - The id of the organization this entity belongs to.
- Owner string
- Email of the user that owns the entity.
- Private
Key string - Secret access key or password to be used to authenticate with the integration.
- Private
Key stringId - Access key id or username to be used to authenticate with the integration.
- []Integration
Tag Args - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - Updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- custom
Properties Map<String,String> - Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integration
Id String - (Optional) The id of the integration.
- integration
Properties Map<String,String> - Integration specific properties supplied in as name value pairs.
- integration
Type String - Integration type.
- links
List<Integration
Link> - HATEOAS of entity.
- name String
- The name of the integration.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- private
Key String - Secret access key or password to be used to authenticate with the integration.
- private
Key StringId - Access key id or username to be used to authenticate with the integration.
- List<Integration
Tag> - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
- associated
Cloud string[]Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate string
- Certificate to be used to connect to the integration.
- created
At string - Date when the entity was created. The date is in ISO 8601 and UTC.
- custom
Properties {[key: string]: string} - Additional custom properties that may be used to extend the Integration.
- description string
- A human-friendly description.
- integration
Id string - (Optional) The id of the integration.
- integration
Properties {[key: string]: string} - Integration specific properties supplied in as name value pairs.
- integration
Type string - Integration type.
- links
Integration
Link[] - HATEOAS of entity.
- name string
- The name of the integration.
- org
Id string - The id of the organization this entity belongs to.
- owner string
- Email of the user that owns the entity.
- private
Key string - Secret access key or password to be used to authenticate with the integration.
- private
Key stringId - Access key id or username to be used to authenticate with the integration.
- Integration
Tag[] - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - updated
At string - Date when the entity was last updated. The date is ISO 8601 and UTC.
- associated_
cloud_ Sequence[str]account_ ids - Ids of the cloud accounts to associate with this integration.
- certificate str
- Certificate to be used to connect to the integration.
- created_
at str - Date when the entity was created. The date is in ISO 8601 and UTC.
- custom_
properties Mapping[str, str] - Additional custom properties that may be used to extend the Integration.
- description str
- A human-friendly description.
- integration_
id str - (Optional) The id of the integration.
- integration_
properties Mapping[str, str] - Integration specific properties supplied in as name value pairs.
- integration_
type str - Integration type.
- links
Sequence[Integration
Link Args] - HATEOAS of entity.
- name str
- The name of the integration.
- org_
id str - The id of the organization this entity belongs to.
- owner str
- Email of the user that owns the entity.
- private_
key str - Secret access key or password to be used to authenticate with the integration.
- private_
key_ strid - Access key id or username to be used to authenticate with the integration.
- Sequence[Integration
Tag Args] - A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - updated_
at str - Date when the entity was last updated. The date is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Ids of the cloud accounts to associate with this integration.
- certificate String
- Certificate to be used to connect to the integration.
- created
At String - Date when the entity was created. The date is in ISO 8601 and UTC.
- custom
Properties Map<String> - Additional custom properties that may be used to extend the Integration.
- description String
- A human-friendly description.
- integration
Id String - (Optional) The id of the integration.
- integration
Properties Map<String> - Integration specific properties supplied in as name value pairs.
- integration
Type String - Integration type.
- links List<Property Map>
- HATEOAS of entity.
- name String
- The name of the integration.
- org
Id String - The id of the organization this entity belongs to.
- owner String
- Email of the user that owns the entity.
- private
Key String - Secret access key or password to be used to authenticate with the integration.
- private
Key StringId - Access key id or username to be used to authenticate with the integration.
- List<Property Map>
- A set of tag keys and optional values to apply to the integration. Example:
[ { "key" : "provider", "value": "vmware" } ]
. - updated
At String - Date when the entity was last updated. The date is ISO 8601 and UTC.
Supporting Types
IntegrationLink, IntegrationLinkArgs
IntegrationTag, IntegrationTagArgs
Import
To import an existing integration, use the id as in the following example:
$ pulumi import vra:index/integration:Integration `vra_integration 90b9a230-bd61-4d39-a082-b12a17cd03c8`
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- vra vmware/terraform-provider-vra
- License
- Notes
- This Pulumi package is based on the
vra
Terraform Provider.