vra.CloudAccountNsxv
Explore with Pulumi AI
Creates a VMware vRealize Automation NSX-V cloud account resource.
Example Usage
S
The following example shows how to create an NSX-V cloud account resource.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.CloudAccountNsxv("this", {
description: "foobar",
username: _var.username,
password: _var.password,
hostname: _var.hostname,
dcId: _var.vra_data_collector_id,
acceptSelfSignedCert: true,
tags: [{
key: "foo",
value: "bar",
}],
});
import pulumi
import pulumi_vra as vra
this = vra.CloudAccountNsxv("this",
description="foobar",
username=var["username"],
password=var["password"],
hostname=var["hostname"],
dc_id=var["vra_data_collector_id"],
accept_self_signed_cert=True,
tags=[{
"key": "foo",
"value": "bar",
}])
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.NewCloudAccountNsxv(ctx, "this", &vra.CloudAccountNsxvArgs{
Description: pulumi.String("foobar"),
Username: pulumi.Any(_var.Username),
Password: pulumi.Any(_var.Password),
Hostname: pulumi.Any(_var.Hostname),
DcId: pulumi.Any(_var.Vra_data_collector_id),
AcceptSelfSignedCert: pulumi.Bool(true),
Tags: vra.CloudAccountNsxvTagArray{
&vra.CloudAccountNsxvTagArgs{
Key: pulumi.String("foo"),
Value: pulumi.String("bar"),
},
},
})
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.CloudAccountNsxv("this", new()
{
Description = "foobar",
Username = @var.Username,
Password = @var.Password,
Hostname = @var.Hostname,
DcId = @var.Vra_data_collector_id,
AcceptSelfSignedCert = true,
Tags = new[]
{
new Vra.Inputs.CloudAccountNsxvTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.CloudAccountNsxv;
import com.pulumi.vra.CloudAccountNsxvArgs;
import com.pulumi.vra.inputs.CloudAccountNsxvTagArgs;
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 CloudAccountNsxv("this", CloudAccountNsxvArgs.builder()
.description("foobar")
.username(var_.username())
.password(var_.password())
.hostname(var_.hostname())
.dcId(var_.vra_data_collector_id())
.acceptSelfSignedCert(true)
.tags(CloudAccountNsxvTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
this:
type: vra:CloudAccountNsxv
properties:
description: foobar
username: ${var.username}
password: ${var.password}
hostname: ${var.hostname}
dcId: ${var.vra_data_collector_id}
acceptSelfSignedCert: true
tags:
- key: foo
value: bar
Create CloudAccountNsxv Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAccountNsxv(name: string, args: CloudAccountNsxvArgs, opts?: CustomResourceOptions);
@overload
def CloudAccountNsxv(resource_name: str,
args: CloudAccountNsxvArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudAccountNsxv(resource_name: str,
opts: Optional[ResourceOptions] = None,
hostname: Optional[str] = None,
password: Optional[str] = None,
username: Optional[str] = None,
accept_self_signed_cert: Optional[bool] = None,
cloud_account_nsxv_id: Optional[str] = None,
dc_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[CloudAccountNsxvTagArgs]] = None)
func NewCloudAccountNsxv(ctx *Context, name string, args CloudAccountNsxvArgs, opts ...ResourceOption) (*CloudAccountNsxv, error)
public CloudAccountNsxv(string name, CloudAccountNsxvArgs args, CustomResourceOptions? opts = null)
public CloudAccountNsxv(String name, CloudAccountNsxvArgs args)
public CloudAccountNsxv(String name, CloudAccountNsxvArgs args, CustomResourceOptions options)
type: vra:CloudAccountNsxv
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 CloudAccountNsxvArgs
- 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 CloudAccountNsxvArgs
- 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 CloudAccountNsxvArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAccountNsxvArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAccountNsxvArgs
- 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 cloudAccountNsxvResource = new Vra.CloudAccountNsxv("cloudAccountNsxvResource", new()
{
Hostname = "string",
Password = "string",
Username = "string",
AcceptSelfSignedCert = false,
CloudAccountNsxvId = "string",
DcId = "string",
Description = "string",
Name = "string",
Tags = new[]
{
new Vra.Inputs.CloudAccountNsxvTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := vra.NewCloudAccountNsxv(ctx, "cloudAccountNsxvResource", &vra.CloudAccountNsxvArgs{
Hostname: pulumi.String("string"),
Password: pulumi.String("string"),
Username: pulumi.String("string"),
AcceptSelfSignedCert: pulumi.Bool(false),
CloudAccountNsxvId: pulumi.String("string"),
DcId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: vra.CloudAccountNsxvTagArray{
&vra.CloudAccountNsxvTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var cloudAccountNsxvResource = new CloudAccountNsxv("cloudAccountNsxvResource", CloudAccountNsxvArgs.builder()
.hostname("string")
.password("string")
.username("string")
.acceptSelfSignedCert(false)
.cloudAccountNsxvId("string")
.dcId("string")
.description("string")
.name("string")
.tags(CloudAccountNsxvTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
cloud_account_nsxv_resource = vra.CloudAccountNsxv("cloudAccountNsxvResource",
hostname="string",
password="string",
username="string",
accept_self_signed_cert=False,
cloud_account_nsxv_id="string",
dc_id="string",
description="string",
name="string",
tags=[{
"key": "string",
"value": "string",
}])
const cloudAccountNsxvResource = new vra.CloudAccountNsxv("cloudAccountNsxvResource", {
hostname: "string",
password: "string",
username: "string",
acceptSelfSignedCert: false,
cloudAccountNsxvId: "string",
dcId: "string",
description: "string",
name: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: vra:CloudAccountNsxv
properties:
acceptSelfSignedCert: false
cloudAccountNsxvId: string
dcId: string
description: string
hostname: string
name: string
password: string
tags:
- key: string
value: string
username: string
CloudAccountNsxv 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 CloudAccountNsxv resource accepts the following input properties:
- Hostname string
- Host name for NSX-V cloud account.
- Password string
- Password used to authenticate to the cloud account.
- Username string
- Username used to authenticate with the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Name string
- Name of NSX-V cloud account.
- List<Cloud
Account Nsxv Tag> - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- Hostname string
- Host name for NSX-V cloud account.
- Password string
- Password used to authenticate to the cloud account.
- Username string
- Username used to authenticate with the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Name string
- Name of NSX-V cloud account.
- []Cloud
Account Nsxv Tag Args - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- hostname String
- Host name for NSX-V cloud account.
- password String
- Password used to authenticate to the cloud account.
- username String
- Username used to authenticate with the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringNsxv Id - ID of NSX-V cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- name String
- Name of NSX-V cloud account.
- List<Cloud
Account Nsxv Tag> - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- hostname string
- Host name for NSX-V cloud account.
- password string
- Password used to authenticate to the cloud account.
- username string
- Username used to authenticate with the cloud account.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- description string
- Human-friendly description.
- name string
- Name of NSX-V cloud account.
- Cloud
Account Nsxv Tag[] - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- hostname str
- Host name for NSX-V cloud account.
- password str
- Password used to authenticate to the cloud account.
- username str
- Username used to authenticate with the cloud account.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- cloud_
account_ strnsxv_ id - ID of NSX-V cloud account.
- dc_
id str - Identifier of a data collector VM deployed in the on premise infrastructure.
- description str
- Human-friendly description.
- name str
- Name of NSX-V cloud account.
- Sequence[Cloud
Account Nsxv Tag Args] - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
- hostname String
- Host name for NSX-V cloud account.
- password String
- Password used to authenticate to the cloud account.
- username String
- Username used to authenticate with the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringNsxv Id - ID of NSX-V cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- name String
- Name of NSX-V cloud account.
- List<Property Map>
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ]
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudAccountNsxv resource produces the following output properties:
- Associated
Cloud List<string>Account Ids - Cloud accounts associated to the cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
List<Cloud
Account Nsxv Link> - HATEOAS of entity.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Associated
Cloud []stringAccount Ids - Cloud accounts associated to the cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Id string
- The provider-assigned unique ID for this managed resource.
- Links
[]Cloud
Account Nsxv Link - HATEOAS of entity.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Cloud accounts associated to the cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id String
- The provider-assigned unique ID for this managed resource.
- links
List<Cloud
Account Nsxv Link> - HATEOAS of entity.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud string[]Account Ids - Cloud accounts associated to the cloud account.
- created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id string
- The provider-assigned unique ID for this managed resource.
- links
Cloud
Account Nsxv Link[] - HATEOAS of entity.
- org
Id string - ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated_
cloud_ Sequence[str]account_ ids - Cloud accounts associated to the cloud account.
- created_
at str - Date when entity was created. Date and time format is ISO 8601 and UTC.
- id str
- The provider-assigned unique ID for this managed resource.
- links
Sequence[Cloud
Account Nsxv Link] - HATEOAS of entity.
- org_
id str - ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- associated
Cloud List<String>Account Ids - Cloud accounts associated to the cloud account.
- created
At String - Date when entity was created. Date and time format is 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 - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
Look up Existing CloudAccountNsxv Resource
Get an existing CloudAccountNsxv 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?: CloudAccountNsxvState, opts?: CustomResourceOptions): CloudAccountNsxv
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accept_self_signed_cert: Optional[bool] = None,
associated_cloud_account_ids: Optional[Sequence[str]] = None,
cloud_account_nsxv_id: Optional[str] = None,
created_at: Optional[str] = None,
dc_id: Optional[str] = None,
description: Optional[str] = None,
hostname: Optional[str] = None,
links: Optional[Sequence[CloudAccountNsxvLinkArgs]] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
owner: Optional[str] = None,
password: Optional[str] = None,
tags: Optional[Sequence[CloudAccountNsxvTagArgs]] = None,
updated_at: Optional[str] = None,
username: Optional[str] = None) -> CloudAccountNsxv
func GetCloudAccountNsxv(ctx *Context, name string, id IDInput, state *CloudAccountNsxvState, opts ...ResourceOption) (*CloudAccountNsxv, error)
public static CloudAccountNsxv Get(string name, Input<string> id, CloudAccountNsxvState? state, CustomResourceOptions? opts = null)
public static CloudAccountNsxv get(String name, Output<String> id, CloudAccountNsxvState state, CustomResourceOptions options)
resources: _: type: vra:CloudAccountNsxv 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.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Associated
Cloud List<string>Account Ids - Cloud accounts associated to the cloud account.
- Cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Hostname string
- Host name for NSX-V cloud account.
- Links
List<Cloud
Account Nsxv Link> - HATEOAS of entity.
- Name string
- Name of NSX-V cloud account.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Password string
- Password used to authenticate to the cloud account.
- List<Cloud
Account Nsxv Tag> - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Username string
- Username used to authenticate with the cloud account.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Associated
Cloud []stringAccount Ids - Cloud accounts associated to the cloud account.
- Cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- Created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- Description string
- Human-friendly description.
- Hostname string
- Host name for NSX-V cloud account.
- Links
[]Cloud
Account Nsxv Link Args - HATEOAS of entity.
- Name string
- Name of NSX-V cloud account.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Password string
- Password used to authenticate to the cloud account.
- []Cloud
Account Nsxv Tag Args - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - Updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- Username string
- Username used to authenticate with the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud List<String>Account Ids - Cloud accounts associated to the cloud account.
- cloud
Account StringNsxv Id - ID of NSX-V cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- hostname String
- Host name for NSX-V cloud account.
- links
List<Cloud
Account Nsxv Link> - HATEOAS of entity.
- name String
- Name of NSX-V cloud account.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- password String
- Password used to authenticate to the cloud account.
- List<Cloud
Account Nsxv Tag> - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username String
- Username used to authenticate with the cloud account.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud string[]Account Ids - Cloud accounts associated to the cloud account.
- cloud
Account stringNsxv Id - ID of NSX-V cloud account.
- created
At string - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure.
- description string
- Human-friendly description.
- hostname string
- Host name for NSX-V cloud account.
- links
Cloud
Account Nsxv Link[] - HATEOAS of entity.
- name string
- Name of NSX-V cloud account.
- org
Id string - ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- password string
- Password used to authenticate to the cloud account.
- Cloud
Account Nsxv Tag[] - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - updated
At string - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username string
- Username used to authenticate with the cloud account.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- associated_
cloud_ Sequence[str]account_ ids - Cloud accounts associated to the cloud account.
- cloud_
account_ strnsxv_ id - ID of NSX-V cloud account.
- created_
at str - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc_
id str - Identifier of a data collector VM deployed in the on premise infrastructure.
- description str
- Human-friendly description.
- hostname str
- Host name for NSX-V cloud account.
- links
Sequence[Cloud
Account Nsxv Link Args] - HATEOAS of entity.
- name str
- Name of NSX-V cloud account.
- org_
id str - ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- password str
- Password used to authenticate to the cloud account.
- Sequence[Cloud
Account Nsxv Tag Args] - Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - updated_
at str - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username str
- Username used to authenticate with the cloud account.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- associated
Cloud List<String>Account Ids - Cloud accounts associated to the cloud account.
- cloud
Account StringNsxv Id - ID of NSX-V cloud account.
- created
At String - Date when entity was created. Date and time format is ISO 8601 and UTC.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure.
- description String
- Human-friendly description.
- hostname String
- Host name for NSX-V cloud account.
- links List<Property Map>
- HATEOAS of entity.
- name String
- Name of NSX-V cloud account.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- password String
- Password used to authenticate to the cloud account.
- List<Property Map>
- Set of tag keys and values to apply to the cloud account.
Example: [ { "key" : "vmware", "value": "provider" } ] - updated
At String - Date when entity was last updated. Date and time format is ISO 8601 and UTC.
- username String
- Username used to authenticate with the cloud account.
Supporting Types
CloudAccountNsxvLink, CloudAccountNsxvLinkArgs
CloudAccountNsxvTag, CloudAccountNsxvTagArgs
Import
To import the NSX-V cloud account, use the ID as in the following example:
$ pulumi import vra:index/cloudAccountNsxv:CloudAccountNsxv new_gcp 05956583-6488-4e7d-84c9-92a7b7219a15`
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.