vra.CloudAccountVmc
Explore with Pulumi AI
Creates a VMware vRealize Automation VMC cloud account resource.
Example Usage
S
Create VMC cloud account:
The following example shows how to create a VMC cloud account resource.
import * as pulumi from "@pulumi/pulumi";
import * as vra from "@pulumi/vra";
const _this = new vra.CloudAccountVmc("this", {
description: "tf test vmc cloud account",
apiToken: _var.api_token,
sddcName: _var.sddc_name,
vcenterHostname: _var.vcenter_hostname,
vcenterPassword: _var.vcenter_password,
vcenterUsername: _var.vcenter_username,
nsxHostname: _var.nsx_hostname,
dcId: _var.data_collector_id,
regions: _var.regions,
acceptSelfSignedCert: true,
tags: [{
key: "foo",
value: "bar",
}],
});
import pulumi
import pulumi_vra as vra
this = vra.CloudAccountVmc("this",
description="tf test vmc cloud account",
api_token=var["api_token"],
sddc_name=var["sddc_name"],
vcenter_hostname=var["vcenter_hostname"],
vcenter_password=var["vcenter_password"],
vcenter_username=var["vcenter_username"],
nsx_hostname=var["nsx_hostname"],
dc_id=var["data_collector_id"],
regions=var["regions"],
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.NewCloudAccountVmc(ctx, "this", &vra.CloudAccountVmcArgs{
Description: pulumi.String("tf test vmc cloud account"),
ApiToken: pulumi.Any(_var.Api_token),
SddcName: pulumi.Any(_var.Sddc_name),
VcenterHostname: pulumi.Any(_var.Vcenter_hostname),
VcenterPassword: pulumi.Any(_var.Vcenter_password),
VcenterUsername: pulumi.Any(_var.Vcenter_username),
NsxHostname: pulumi.Any(_var.Nsx_hostname),
DcId: pulumi.Any(_var.Data_collector_id),
Regions: pulumi.Any(_var.Regions),
AcceptSelfSignedCert: pulumi.Bool(true),
Tags: vra.CloudAccountVmcTagArray{
&vra.CloudAccountVmcTagArgs{
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.CloudAccountVmc("this", new()
{
Description = "tf test vmc cloud account",
ApiToken = @var.Api_token,
SddcName = @var.Sddc_name,
VcenterHostname = @var.Vcenter_hostname,
VcenterPassword = @var.Vcenter_password,
VcenterUsername = @var.Vcenter_username,
NsxHostname = @var.Nsx_hostname,
DcId = @var.Data_collector_id,
Regions = @var.Regions,
AcceptSelfSignedCert = true,
Tags = new[]
{
new Vra.Inputs.CloudAccountVmcTagArgs
{
Key = "foo",
Value = "bar",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vra.CloudAccountVmc;
import com.pulumi.vra.CloudAccountVmcArgs;
import com.pulumi.vra.inputs.CloudAccountVmcTagArgs;
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 CloudAccountVmc("this", CloudAccountVmcArgs.builder()
.description("tf test vmc cloud account")
.apiToken(var_.api_token())
.sddcName(var_.sddc_name())
.vcenterHostname(var_.vcenter_hostname())
.vcenterPassword(var_.vcenter_password())
.vcenterUsername(var_.vcenter_username())
.nsxHostname(var_.nsx_hostname())
.dcId(var_.data_collector_id())
.regions(var_.regions())
.acceptSelfSignedCert(true)
.tags(CloudAccountVmcTagArgs.builder()
.key("foo")
.value("bar")
.build())
.build());
}
}
resources:
this:
type: vra:CloudAccountVmc
properties:
description: tf test vmc cloud account
apiToken: ${var.api_token}
sddcName: ${var.sddc_name}
vcenterHostname: ${var.vcenter_hostname}
vcenterPassword: ${var.vcenter_password}
vcenterUsername: ${var.vcenter_username}
nsxHostname: ${var.nsx_hostname}
dcId: ${var.data_collector_id}
# Required for vRA Cloud, Optional for vRA on-prem
regions: ${var.regions}
acceptSelfSignedCert: true
tags:
- key: foo
value: bar
Create CloudAccountVmc Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAccountVmc(name: string, args: CloudAccountVmcArgs, opts?: CustomResourceOptions);
@overload
def CloudAccountVmc(resource_name: str,
args: CloudAccountVmcArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudAccountVmc(resource_name: str,
opts: Optional[ResourceOptions] = None,
regions: Optional[Sequence[str]] = None,
api_token: Optional[str] = None,
vcenter_username: Optional[str] = None,
vcenter_password: Optional[str] = None,
vcenter_hostname: Optional[str] = None,
sddc_name: Optional[str] = None,
nsx_hostname: Optional[str] = None,
dc_id: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[CloudAccountVmcTagArgs]] = None,
description: Optional[str] = None,
accept_self_signed_cert: Optional[bool] = None,
cloud_account_vmc_id: Optional[str] = None)
func NewCloudAccountVmc(ctx *Context, name string, args CloudAccountVmcArgs, opts ...ResourceOption) (*CloudAccountVmc, error)
public CloudAccountVmc(string name, CloudAccountVmcArgs args, CustomResourceOptions? opts = null)
public CloudAccountVmc(String name, CloudAccountVmcArgs args)
public CloudAccountVmc(String name, CloudAccountVmcArgs args, CustomResourceOptions options)
type: vra:CloudAccountVmc
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 CloudAccountVmcArgs
- 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 CloudAccountVmcArgs
- 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 CloudAccountVmcArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAccountVmcArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAccountVmcArgs
- 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 cloudAccountVmcResource = new Vra.CloudAccountVmc("cloudAccountVmcResource", new()
{
Regions = new[]
{
"string",
},
ApiToken = "string",
VcenterUsername = "string",
VcenterPassword = "string",
VcenterHostname = "string",
SddcName = "string",
NsxHostname = "string",
DcId = "string",
Name = "string",
Tags = new[]
{
new Vra.Inputs.CloudAccountVmcTagArgs
{
Key = "string",
Value = "string",
},
},
Description = "string",
AcceptSelfSignedCert = false,
CloudAccountVmcId = "string",
});
example, err := vra.NewCloudAccountVmc(ctx, "cloudAccountVmcResource", &vra.CloudAccountVmcArgs{
Regions: pulumi.StringArray{
pulumi.String("string"),
},
ApiToken: pulumi.String("string"),
VcenterUsername: pulumi.String("string"),
VcenterPassword: pulumi.String("string"),
VcenterHostname: pulumi.String("string"),
SddcName: pulumi.String("string"),
NsxHostname: pulumi.String("string"),
DcId: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: vra.CloudAccountVmcTagArray{
&vra.CloudAccountVmcTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
AcceptSelfSignedCert: pulumi.Bool(false),
CloudAccountVmcId: pulumi.String("string"),
})
var cloudAccountVmcResource = new CloudAccountVmc("cloudAccountVmcResource", CloudAccountVmcArgs.builder()
.regions("string")
.apiToken("string")
.vcenterUsername("string")
.vcenterPassword("string")
.vcenterHostname("string")
.sddcName("string")
.nsxHostname("string")
.dcId("string")
.name("string")
.tags(CloudAccountVmcTagArgs.builder()
.key("string")
.value("string")
.build())
.description("string")
.acceptSelfSignedCert(false)
.cloudAccountVmcId("string")
.build());
cloud_account_vmc_resource = vra.CloudAccountVmc("cloudAccountVmcResource",
regions=["string"],
api_token="string",
vcenter_username="string",
vcenter_password="string",
vcenter_hostname="string",
sddc_name="string",
nsx_hostname="string",
dc_id="string",
name="string",
tags=[{
"key": "string",
"value": "string",
}],
description="string",
accept_self_signed_cert=False,
cloud_account_vmc_id="string")
const cloudAccountVmcResource = new vra.CloudAccountVmc("cloudAccountVmcResource", {
regions: ["string"],
apiToken: "string",
vcenterUsername: "string",
vcenterPassword: "string",
vcenterHostname: "string",
sddcName: "string",
nsxHostname: "string",
dcId: "string",
name: "string",
tags: [{
key: "string",
value: "string",
}],
description: "string",
acceptSelfSignedCert: false,
cloudAccountVmcId: "string",
});
type: vra:CloudAccountVmc
properties:
acceptSelfSignedCert: false
apiToken: string
cloudAccountVmcId: string
dcId: string
description: string
name: string
nsxHostname: string
regions:
- string
sddcName: string
tags:
- key: string
value: string
vcenterHostname: string
vcenterPassword: string
vcenterUsername: string
CloudAccountVmc 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 CloudAccountVmc resource accepts the following input properties:
- Api
Token string - VMC API access key.
- Nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- Regions List<string>
- Set of region names enabled for the cloud account.
- Sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- Vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- Vcenter
Password string - Password used to authenticate to the cloud Account.
- Vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringVmc Id - ID of the VMC cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- List<Cloud
Account Vmc Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Api
Token string - VMC API access key.
- Nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- Regions []string
- Set of region names enabled for the cloud account.
- Sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- Vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- Vcenter
Password string - Password used to authenticate to the cloud Account.
- Vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Cloud
Account stringVmc Id - ID of the VMC cloud account.
- Dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- []Cloud
Account Vmc Tag Args - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- api
Token String - VMC API access key.
- nsx
Hostname String - IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddc
Name String - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenter
Hostname String - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password String - Password used to authenticate to the cloud Account.
- vcenter
Username String - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringVmc Id - ID of the VMC cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- List<Cloud
Account Vmc Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- api
Token string - VMC API access key.
- nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions string[]
- Set of region names enabled for the cloud account.
- sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password string - Password used to authenticate to the cloud Account.
- vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account stringVmc Id - ID of the VMC cloud account.
- dc
Id string - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description string
- Human-friendly description.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- Cloud
Account Vmc Tag[] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- api_
token str - VMC API access key.
- nsx_
hostname str - IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions Sequence[str]
- Set of region names enabled for the cloud account.
- sddc_
name str - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenter_
hostname str - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter_
password str - Password used to authenticate to the cloud Account.
- vcenter_
username str - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- cloud_
account_ strvmc_ id - ID of the VMC cloud account.
- dc_
id str - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description str
- Human-friendly description.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- Sequence[Cloud
Account Vmc Tag Args] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- api
Token String - VMC API access key.
- nsx
Hostname String - IP address of the NSX Manager server in the specified SDDC / FQDN.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddc
Name String - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- vcenter
Hostname String - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password String - Password used to authenticate to the cloud Account.
- vcenter
Username String - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- cloud
Account StringVmc Id - ID of the VMC cloud account.
- dc
Id String - Identifier of a data collector VM deployed in the on premise infrastructure. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- 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 CloudAccountVmc resource produces the following output properties:
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 Vmc 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
Look up Existing CloudAccountVmc Resource
Get an existing CloudAccountVmc 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?: CloudAccountVmcState, opts?: CustomResourceOptions): CloudAccountVmc
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accept_self_signed_cert: Optional[bool] = None,
api_token: Optional[str] = None,
cloud_account_vmc_id: Optional[str] = None,
created_at: Optional[str] = None,
dc_id: Optional[str] = None,
description: Optional[str] = None,
links: Optional[Sequence[CloudAccountVmcLinkArgs]] = None,
name: Optional[str] = None,
nsx_hostname: Optional[str] = None,
org_id: Optional[str] = None,
owner: Optional[str] = None,
regions: Optional[Sequence[str]] = None,
sddc_name: Optional[str] = None,
tags: Optional[Sequence[CloudAccountVmcTagArgs]] = None,
updated_at: Optional[str] = None,
vcenter_hostname: Optional[str] = None,
vcenter_password: Optional[str] = None,
vcenter_username: Optional[str] = None) -> CloudAccountVmc
func GetCloudAccountVmc(ctx *Context, name string, id IDInput, state *CloudAccountVmcState, opts ...ResourceOption) (*CloudAccountVmc, error)
public static CloudAccountVmc Get(string name, Input<string> id, CloudAccountVmcState? state, CustomResourceOptions? opts = null)
public static CloudAccountVmc get(String name, Output<String> id, CloudAccountVmcState state, CustomResourceOptions options)
resources: _: type: vra:CloudAccountVmc 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.
- Api
Token string - VMC API access key.
- Cloud
Account stringVmc Id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Links
List<Cloud
Account Vmc Link> - HATEOAS of entity.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Regions List<string>
- Set of region names enabled for the cloud account.
- Sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- List<Cloud
Account Vmc Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- Vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- Vcenter
Password string - Password used to authenticate to the cloud Account.
- Vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- Accept
Self boolSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- Api
Token string - VMC API access key.
- Cloud
Account stringVmc Id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- Description string
- Human-friendly description.
- Links
[]Cloud
Account Vmc Link Args - HATEOAS of entity.
- Name string
- Human-friendly name used as an identifier in APIs that support this option.
- Nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- Org
Id string - ID of organization that entity belongs to.
- Owner string
- Email of entity owner.
- Regions []string
- Set of region names enabled for the cloud account.
- Sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- []Cloud
Account Vmc Tag Args - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- Updated
At string - Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- Vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- Vcenter
Password string - Password used to authenticate to the cloud Account.
- Vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- api
Token String - VMC API access key.
- cloud
Account StringVmc Id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- links
List<Cloud
Account Vmc Link> - HATEOAS of entity.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- nsx
Hostname String - IP address of the NSX Manager server in the specified SDDC / FQDN.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddc
Name String - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- List<Cloud
Account Vmc Tag> - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At String - Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenter
Hostname String - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password String - Password used to authenticate to the cloud Account.
- vcenter
Username String - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self booleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- api
Token string - VMC API access key.
- cloud
Account stringVmc Id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description string
- Human-friendly description.
- links
Cloud
Account Vmc Link[] - HATEOAS of entity.
- name string
- Human-friendly name used as an identifier in APIs that support this option.
- nsx
Hostname string - IP address of the NSX Manager server in the specified SDDC / FQDN.
- org
Id string - ID of organization that entity belongs to.
- owner string
- Email of entity owner.
- regions string[]
- Set of region names enabled for the cloud account.
- sddc
Name string - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- Cloud
Account Vmc Tag[] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated
At string - Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenter
Hostname string - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password string - Password used to authenticate to the cloud Account.
- vcenter
Username string - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept_
self_ boolsigned_ cert - Accept self-signed certificate when connecting to the cloud account.
- api_
token str - VMC API access key.
- cloud_
account_ strvmc_ id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description str
- Human-friendly description.
- links
Sequence[Cloud
Account Vmc Link Args] - HATEOAS of entity.
- name str
- Human-friendly name used as an identifier in APIs that support this option.
- nsx_
hostname str - IP address of the NSX Manager server in the specified SDDC / FQDN.
- org_
id str - ID of organization that entity belongs to.
- owner str
- Email of entity owner.
- regions Sequence[str]
- Set of region names enabled for the cloud account.
- sddc_
name str - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- Sequence[Cloud
Account Vmc Tag Args] - Set of tag keys and values to apply to the cloud account.
Example:
[ { "key" : "vmware", "value": "provider" } ]
- updated_
at str - Date when the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenter_
hostname str - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter_
password str - Password used to authenticate to the cloud Account.
- vcenter_
username str - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
- accept
Self BooleanSigned Cert - Accept self-signed certificate when connecting to the cloud account.
- api
Token String - VMC API access key.
- cloud
Account StringVmc Id - ID of the VMC 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. Refer to the data-collector API to create or list data collector.
- description String
- Human-friendly description.
- links List<Property Map>
- HATEOAS of entity.
- name String
- Human-friendly name used as an identifier in APIs that support this option.
- nsx
Hostname String - IP address of the NSX Manager server in the specified SDDC / FQDN.
- org
Id String - ID of organization that entity belongs to.
- owner String
- Email of entity owner.
- regions List<String>
- Set of region names enabled for the cloud account.
- sddc
Name String - Identifier of the on-premise SDDC to be used by the cloud account. Note that NSX-V SDDCs are not supported.
- 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 the entity was last updated. Date and time format is ISO 8601 and UTC.
- vcenter
Hostname String - IP address or FQDN of the vCenter Server in the specified SDDC. The cloud proxy belongs on this vCenter.
- vcenter
Password String - Password used to authenticate to the cloud Account.
- vcenter
Username String - vCenter user name for the specified SDDC. The user requires CloudAdmin credentials. The user does not require CloudGlobalAdmin credentials.
Supporting Types
CloudAccountVmcLink, CloudAccountVmcLinkArgs
CloudAccountVmcTag, CloudAccountVmcTagArgs
Import
To import the VMC cloud account, use the ID as in the following example:
$ pulumi import vra:index/cloudAccountVmc:CloudAccountVmc new_vmc 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.