Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix
aviatrix.getAviatrixAccount
Explore with Pulumi AI
The aviatrix_account data source provides details about a specific cloud account created by the Aviatrix Controller.
This data source can prove useful when a module accepts an account’s detail as an input variable.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aviatrix = Pulumi.Aviatrix;
return await Deployment.RunAsync(() =>
{
var foo = Aviatrix.GetAviatrixAccount.Invoke(new()
{
AccountName = "username",
});
});
package main
import (
"github.com/astipkovits/pulumi-aviatrix/sdk/go/aviatrix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err = aviatrix.LookupAviatrixAccount(ctx, &GetAviatrixAccountArgs{
AccountName: "username",
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aviatrix.AviatrixFunctions;
import com.pulumi.aviatrix.inputs.GetAviatrixAccountArgs;
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) {
final var foo = AviatrixFunctions.getAviatrixAccount(GetAviatrixAccountArgs.builder()
.accountName("username")
.build());
}
}
import pulumi
import pulumi_aviatrix as aviatrix
foo = aviatrix.get_aviatrix_account(account_name="username")
import * as pulumi from "@pulumi/pulumi";
import * as aviatrix from "@pulumi/aviatrix";
// Aviatrix Account Data Source
const foo = pulumi.output(aviatrix.getAviatrixAccount({
accountName: "username",
}));
variables:
foo:
fn::invoke:
Function: aviatrix:getAviatrixAccount
Arguments:
accountName: username
Using getAviatrixAccount
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAviatrixAccount(args: GetAviatrixAccountArgs, opts?: InvokeOptions): Promise<GetAviatrixAccountResult>
function getAviatrixAccountOutput(args: GetAviatrixAccountOutputArgs, opts?: InvokeOptions): Output<GetAviatrixAccountResult>
def get_aviatrix_account(account_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAviatrixAccountResult
def get_aviatrix_account_output(account_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAviatrixAccountResult]
func LookupAviatrixAccount(ctx *Context, args *LookupAviatrixAccountArgs, opts ...InvokeOption) (*LookupAviatrixAccountResult, error)
func LookupAviatrixAccountOutput(ctx *Context, args *LookupAviatrixAccountOutputArgs, opts ...InvokeOption) LookupAviatrixAccountResultOutput
> Note: This function is named LookupAviatrixAccount
in the Go SDK.
public static class GetAviatrixAccount
{
public static Task<GetAviatrixAccountResult> InvokeAsync(GetAviatrixAccountArgs args, InvokeOptions? opts = null)
public static Output<GetAviatrixAccountResult> Invoke(GetAviatrixAccountInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAviatrixAccountResult> getAviatrixAccount(GetAviatrixAccountArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aviatrix:index/getAviatrixAccount:getAviatrixAccount
arguments:
# arguments dictionary
The following arguments are supported:
- Account
Name string - Account name. This can be used for logging in to CloudN console or UserConnect controller.
- Account
Name string - Account name. This can be used for logging in to CloudN console or UserConnect controller.
- account
Name String - Account name. This can be used for logging in to CloudN console or UserConnect controller.
- account
Name string - Account name. This can be used for logging in to CloudN console or UserConnect controller.
- account_
name str - Account name. This can be used for logging in to CloudN console or UserConnect controller.
- account
Name String - Account name. This can be used for logging in to CloudN console or UserConnect controller.
getAviatrixAccount Result
The following output properties are available:
- Account
Name string - Alicloud
Account stringId - Alibaba Cloud Account ID.
- Arm
Subscription stringId - Azure ARM Subscription ID.
- Aws
Account stringNumber - AWS Account number.
- Aws
Ca stringCert Path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- Aws
Gateway stringRole App - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- Aws
Gateway stringRole Ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- Aws
Role stringArn - AWS App role ARN.
- Aws
Role stringEc2 - AWS EC2 role ARN.
- Awschina
Account stringNumber - AWSChina Account number. Available as of provider version R2.19+.
- Awschina
Iam bool - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - Awschina
Role stringApp - AWSChina App role ARN. Available as of provider version R2.19+.
- Awschina
Role stringEc2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- Awsgov
Account stringNumber - AWSGov Account number.
- Awsgov
Iam bool - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - Awsgov
Role stringApp - AWSGov App role ARN. Available as of provider version R2.19+.
- Awsgov
Role stringEc2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- Awss
Account stringNumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringAccount Name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringAgency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringCert Key Path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- Awss
Cap stringCert Path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- Awss
Cap stringRole Name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringUrl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awsts
Account stringNumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringAgency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringCert Key Path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- Awsts
Cap stringCert Path - Awsts
Cap stringMission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringRole Name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - Awsts
Cap stringUrl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Azurechina
Subscription stringId - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- Azuregov
Subscription stringId - AzureGov ARM Subscription ID.
- Cloud
Type int - Type of cloud service provider.
- Gcloud
Project stringId - GCloud Project ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- Account
Name string - Alicloud
Account stringId - Alibaba Cloud Account ID.
- Arm
Subscription stringId - Azure ARM Subscription ID.
- Aws
Account stringNumber - AWS Account number.
- Aws
Ca stringCert Path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- Aws
Gateway stringRole App - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- Aws
Gateway stringRole Ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- Aws
Role stringArn - AWS App role ARN.
- Aws
Role stringEc2 - AWS EC2 role ARN.
- Awschina
Account stringNumber - AWSChina Account number. Available as of provider version R2.19+.
- Awschina
Iam bool - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - Awschina
Role stringApp - AWSChina App role ARN. Available as of provider version R2.19+.
- Awschina
Role stringEc2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- Awsgov
Account stringNumber - AWSGov Account number.
- Awsgov
Iam bool - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - Awsgov
Role stringApp - AWSGov App role ARN. Available as of provider version R2.19+.
- Awsgov
Role stringEc2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- Awss
Account stringNumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringAccount Name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringAgency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringCert Key Path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- Awss
Cap stringCert Path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- Awss
Cap stringRole Name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awss
Cap stringUrl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- Awsts
Account stringNumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringAgency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringCert Key Path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- Awsts
Cap stringCert Path - Awsts
Cap stringMission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Awsts
Cap stringRole Name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - Awsts
Cap stringUrl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- Azurechina
Subscription stringId - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- Azuregov
Subscription stringId - AzureGov ARM Subscription ID.
- Cloud
Type int - Type of cloud service provider.
- Gcloud
Project stringId - GCloud Project ID.
- Id string
- The provider-assigned unique ID for this managed resource.
- account
Name String - alicloud
Account StringId - Alibaba Cloud Account ID.
- arm
Subscription StringId - Azure ARM Subscription ID.
- aws
Account StringNumber - AWS Account number.
- aws
Ca StringCert Path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- aws
Gateway StringRole App - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Gateway StringRole Ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Role StringArn - AWS App role ARN.
- aws
Role StringEc2 - AWS EC2 role ARN.
- awschina
Account StringNumber - AWSChina Account number. Available as of provider version R2.19+.
- awschina
Iam Boolean - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awschina
Role StringApp - AWSChina App role ARN. Available as of provider version R2.19+.
- awschina
Role StringEc2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- awsgov
Account StringNumber - AWSGov Account number.
- awsgov
Iam Boolean - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awsgov
Role StringApp - AWSGov App role ARN. Available as of provider version R2.19+.
- awsgov
Role StringEc2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- awss
Account StringNumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringAccount Name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringAgency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringCert Key Path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awss
Cap StringCert Path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- awss
Cap StringRole Name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringUrl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awsts
Account StringNumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringAgency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringCert Key Path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awsts
Cap StringCert Path - awsts
Cap StringMission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringRole Name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - awsts
Cap StringUrl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- azurechina
Subscription StringId - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- azuregov
Subscription StringId - AzureGov ARM Subscription ID.
- cloud
Type Integer - Type of cloud service provider.
- gcloud
Project StringId - GCloud Project ID.
- id String
- The provider-assigned unique ID for this managed resource.
- account
Name string - alicloud
Account stringId - Alibaba Cloud Account ID.
- arm
Subscription stringId - Azure ARM Subscription ID.
- aws
Account stringNumber - AWS Account number.
- aws
Ca stringCert Path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- aws
Gateway stringRole App - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Gateway stringRole Ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Role stringArn - AWS App role ARN.
- aws
Role stringEc2 - AWS EC2 role ARN.
- awschina
Account stringNumber - AWSChina Account number. Available as of provider version R2.19+.
- awschina
Iam boolean - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awschina
Role stringApp - AWSChina App role ARN. Available as of provider version R2.19+.
- awschina
Role stringEc2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- awsgov
Account stringNumber - AWSGov Account number.
- awsgov
Iam boolean - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awsgov
Role stringApp - AWSGov App role ARN. Available as of provider version R2.19+.
- awsgov
Role stringEc2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- awss
Account stringNumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap stringAccount Name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap stringAgency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap stringCert Key Path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awss
Cap stringCert Path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- awss
Cap stringRole Name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap stringUrl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awsts
Account stringNumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap stringAgency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap stringCert Key Path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awsts
Cap stringCert Path - awsts
Cap stringMission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap stringRole Name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - awsts
Cap stringUrl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- azurechina
Subscription stringId - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- azuregov
Subscription stringId - AzureGov ARM Subscription ID.
- cloud
Type number - Type of cloud service provider.
- gcloud
Project stringId - GCloud Project ID.
- id string
- The provider-assigned unique ID for this managed resource.
- account_
name str - alicloud_
account_ strid - Alibaba Cloud Account ID.
- arm_
subscription_ strid - Azure ARM Subscription ID.
- aws_
account_ strnumber - AWS Account number.
- aws_
ca_ strcert_ path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- aws_
gateway_ strrole_ app - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws_
gateway_ strrole_ ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws_
role_ strarn - AWS App role ARN.
- aws_
role_ strec2 - AWS EC2 role ARN.
- awschina_
account_ strnumber - AWSChina Account number. Available as of provider version R2.19+.
- awschina_
iam bool - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awschina_
role_ strapp - AWSChina App role ARN. Available as of provider version R2.19+.
- awschina_
role_ strec2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- awsgov_
account_ strnumber - AWSGov Account number.
- awsgov_
iam bool - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awsgov_
role_ strapp - AWSGov App role ARN. Available as of provider version R2.19+.
- awsgov_
role_ strec2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- awss_
account_ strnumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss_
cap_ straccount_ name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss_
cap_ stragency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss_
cap_ strcert_ key_ path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awss_
cap_ strcert_ path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- awss_
cap_ strrole_ name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss_
cap_ strurl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awsts_
account_ strnumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts_
cap_ stragency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts_
cap_ strcert_ key_ path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awsts_
cap_ strcert_ path - awsts_
cap_ strmission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts_
cap_ strrole_ name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - awsts_
cap_ strurl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- azurechina_
subscription_ strid - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- azuregov_
subscription_ strid - AzureGov ARM Subscription ID.
- cloud_
type int - Type of cloud service provider.
- gcloud_
project_ strid - GCloud Project ID.
- id str
- The provider-assigned unique ID for this managed resource.
- account
Name String - alicloud
Account StringId - Alibaba Cloud Account ID.
- arm
Subscription StringId - Azure ARM Subscription ID.
- aws
Account StringNumber - AWS Account number.
- aws
Ca StringCert Path - AWS Top Secret Region or Secret Region Custom Certificate Authority file name on the controller. Available as of provider R2.19.5+.
- aws
Gateway StringRole App - A separate AWS App role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Gateway StringRole Ec2 - A separate AWS EC2 role ARN to assign to gateways created by the controller. Available as of provider version R2.19+.
- aws
Role StringArn - AWS App role ARN.
- aws
Role StringEc2 - AWS EC2 role ARN.
- awschina
Account StringNumber - AWSChina Account number. Available as of provider version R2.19+.
- awschina
Iam Boolean - If enabled,
awschina_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awschina
Role StringApp - AWSChina App role ARN. Available as of provider version R2.19+.
- awschina
Role StringEc2 - AWSChina EC2 role ARN. Available as of provider version R2.19+.
- awsgov
Account StringNumber - AWSGov Account number.
- awsgov
Iam Boolean - If enabled,
awsgov_role_app
andawschina_role_ec2
will be set. Available as of provider version R2.19+. - awsgov
Role StringApp - AWSGov App role ARN. Available as of provider version R2.19+.
- awsgov
Role StringEc2 - AWSGov EC2 role ARN. Available as of provider version R2.19+.
- awss
Account StringNumber - AWS Secret Region Account Number. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringAccount Name - AWS Secret Region Account Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringAgency - AWS Secret Region CAP Agency. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringCert Key Path - AWS Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awss
Cap StringCert Path - AWS Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+.
- awss
Cap StringRole Name - AWS Secret Region Role Name. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awss
Cap StringUrl - AWS Secret Region CAP Url. Required when creating an account in AWS Secret Region. Available as of provider version R2.19.5+.
- awsts
Account StringNumber - AWS Top Secret Region Account Number. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringAgency - AWS Top Secret Region CAP Agency. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringCert Key Path - AWS Top Secret Region CAP Certificate Key file name on the controller. Available as of provider R2.19.5+.
- awsts
Cap StringCert Path - awsts
Cap StringMission - AWS Top Secret Region Mission. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- awsts
Cap StringRole Name - AWS Top Secret Region Role Name. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
awsts_cap_cert_path
- AWS Top Secret Region CAP Certificate file name on the controller. Available as of provider R2.19.5+. - awsts
Cap StringUrl - AWS Top Secret Region CAP Url. Required when creating an account in AWS Top Secret Region. Available as of provider version R2.19.5+.
- azurechina
Subscription StringId - AzureChina ARM Subscription ID. Available as of provider version R2.19+.
- azuregov
Subscription StringId - AzureGov ARM Subscription ID.
- cloud
Type Number - Type of cloud service provider.
- gcloud
Project StringId - GCloud Project ID.
- id String
- The provider-assigned unique ID for this managed resource.
Package Details
- Repository
- aviatrix astipkovits/pulumi-aviatrix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aviatrix
Terraform Provider.