1. Packages
  2. AWS
  3. API Docs
  4. codeconnections
  5. Host
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.codeconnections.Host

Explore with Pulumi AI

Resource for managing an AWS CodeConnections Host.

NOTE: The aws.codeconnections.Host resource is created in the state PENDING. Authentication with the host provider must be completed in the AWS Console. For more information visit Set up a pending host.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.codeconnections.Host("example", {
    name: "example-host",
    providerEndpoint: "https://example.com",
    providerType: "GitHubEnterpriseServer",
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.codeconnections.Host("example",
    name="example-host",
    provider_endpoint="https://example.com",
    provider_type="GitHubEnterpriseServer")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/codeconnections"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := codeconnections.NewHost(ctx, "example", &codeconnections.HostArgs{
			Name:             pulumi.String("example-host"),
			ProviderEndpoint: pulumi.String("https://example.com"),
			ProviderType:     pulumi.String("GitHubEnterpriseServer"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.CodeConnections.Host("example", new()
    {
        Name = "example-host",
        ProviderEndpoint = "https://example.com",
        ProviderType = "GitHubEnterpriseServer",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.codeconnections.Host;
import com.pulumi.aws.codeconnections.HostArgs;
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 example = new Host("example", HostArgs.builder()
            .name("example-host")
            .providerEndpoint("https://example.com")
            .providerType("GitHubEnterpriseServer")
            .build());

    }
}
Copy
resources:
  example:
    type: aws:codeconnections:Host
    properties:
      name: example-host
      providerEndpoint: https://example.com
      providerType: GitHubEnterpriseServer
Copy

Create Host Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Host(name: string, args: HostArgs, opts?: CustomResourceOptions);
@overload
def Host(resource_name: str,
         args: HostArgs,
         opts: Optional[ResourceOptions] = None)

@overload
def Host(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         provider_endpoint: Optional[str] = None,
         provider_type: Optional[str] = None,
         name: Optional[str] = None,
         tags: Optional[Mapping[str, str]] = None,
         timeouts: Optional[HostTimeoutsArgs] = None,
         vpc_configuration: Optional[HostVpcConfigurationArgs] = None)
func NewHost(ctx *Context, name string, args HostArgs, opts ...ResourceOption) (*Host, error)
public Host(string name, HostArgs args, CustomResourceOptions? opts = null)
public Host(String name, HostArgs args)
public Host(String name, HostArgs args, CustomResourceOptions options)
type: aws:codeconnections:Host
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. HostArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. HostArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. HostArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. HostArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. HostArgs
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 hostResource = new Aws.CodeConnections.Host("hostResource", new()
{
    ProviderEndpoint = "string",
    ProviderType = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Timeouts = new Aws.CodeConnections.Inputs.HostTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Update = "string",
    },
    VpcConfiguration = new Aws.CodeConnections.Inputs.HostVpcConfigurationArgs
    {
        SecurityGroupIds = new[]
        {
            "string",
        },
        SubnetIds = new[]
        {
            "string",
        },
        VpcId = "string",
        TlsCertificate = "string",
    },
});
Copy
example, err := codeconnections.NewHost(ctx, "hostResource", &codeconnections.HostArgs{
	ProviderEndpoint: pulumi.String("string"),
	ProviderType:     pulumi.String("string"),
	Name:             pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Timeouts: &codeconnections.HostTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
		Update: pulumi.String("string"),
	},
	VpcConfiguration: &codeconnections.HostVpcConfigurationArgs{
		SecurityGroupIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		SubnetIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		VpcId:          pulumi.String("string"),
		TlsCertificate: pulumi.String("string"),
	},
})
Copy
var hostResource = new Host("hostResource", HostArgs.builder()
    .providerEndpoint("string")
    .providerType("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .timeouts(HostTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .update("string")
        .build())
    .vpcConfiguration(HostVpcConfigurationArgs.builder()
        .securityGroupIds("string")
        .subnetIds("string")
        .vpcId("string")
        .tlsCertificate("string")
        .build())
    .build());
Copy
host_resource = aws.codeconnections.Host("hostResource",
    provider_endpoint="string",
    provider_type="string",
    name="string",
    tags={
        "string": "string",
    },
    timeouts={
        "create": "string",
        "delete": "string",
        "update": "string",
    },
    vpc_configuration={
        "security_group_ids": ["string"],
        "subnet_ids": ["string"],
        "vpc_id": "string",
        "tls_certificate": "string",
    })
Copy
const hostResource = new aws.codeconnections.Host("hostResource", {
    providerEndpoint: "string",
    providerType: "string",
    name: "string",
    tags: {
        string: "string",
    },
    timeouts: {
        create: "string",
        "delete": "string",
        update: "string",
    },
    vpcConfiguration: {
        securityGroupIds: ["string"],
        subnetIds: ["string"],
        vpcId: "string",
        tlsCertificate: "string",
    },
});
Copy
type: aws:codeconnections:Host
properties:
    name: string
    providerEndpoint: string
    providerType: string
    tags:
        string: string
    timeouts:
        create: string
        delete: string
        update: string
    vpcConfiguration:
        securityGroupIds:
            - string
        subnetIds:
            - string
        tlsCertificate: string
        vpcId: string
Copy

Host 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 Host resource accepts the following input properties:

ProviderEndpoint This property is required. string
The endpoint of the infrastructure to be represented by the host after it is created.
ProviderType This property is required. string
The name of the external provider where your third-party code repository is configured.
Name string
The name of the host to be created. The name must be unique in the calling AWS account.
Tags Dictionary<string, string>
Timeouts HostTimeouts
VpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
ProviderEndpoint This property is required. string
The endpoint of the infrastructure to be represented by the host after it is created.
ProviderType This property is required. string
The name of the external provider where your third-party code repository is configured.
Name string
The name of the host to be created. The name must be unique in the calling AWS account.
Tags map[string]string
Timeouts HostTimeoutsArgs
VpcConfiguration HostVpcConfigurationArgs
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
providerEndpoint This property is required. String
The endpoint of the infrastructure to be represented by the host after it is created.
providerType This property is required. String
The name of the external provider where your third-party code repository is configured.
name String
The name of the host to be created. The name must be unique in the calling AWS account.
tags Map<String,String>
timeouts HostTimeouts
vpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
providerEndpoint This property is required. string
The endpoint of the infrastructure to be represented by the host after it is created.
providerType This property is required. string
The name of the external provider where your third-party code repository is configured.
name string
The name of the host to be created. The name must be unique in the calling AWS account.
tags {[key: string]: string}
timeouts HostTimeouts
vpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
provider_endpoint This property is required. str
The endpoint of the infrastructure to be represented by the host after it is created.
provider_type This property is required. str
The name of the external provider where your third-party code repository is configured.
name str
The name of the host to be created. The name must be unique in the calling AWS account.
tags Mapping[str, str]
timeouts HostTimeoutsArgs
vpc_configuration HostVpcConfigurationArgs
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
providerEndpoint This property is required. String
The endpoint of the infrastructure to be represented by the host after it is created.
providerType This property is required. String
The name of the external provider where your third-party code repository is configured.
name String
The name of the host to be created. The name must be unique in the calling AWS account.
tags Map<String>
timeouts Property Map
vpcConfiguration Property Map
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.

Outputs

All input properties are implicitly available as output properties. Additionally, the Host resource produces the following output properties:

Arn string
The CodeConnections Host ARN.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>

Deprecated: Please use tags instead.

Arn string
The CodeConnections Host ARN.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string

Deprecated: Please use tags instead.

arn String
The CodeConnections Host ARN.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>

Deprecated: Please use tags instead.

arn string
The CodeConnections Host ARN.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}

Deprecated: Please use tags instead.

arn str
The CodeConnections Host ARN.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]

Deprecated: Please use tags instead.

arn String
The CodeConnections Host ARN.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>

Deprecated: Please use tags instead.

Look up Existing Host Resource

Get an existing Host 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?: HostState, opts?: CustomResourceOptions): Host
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        name: Optional[str] = None,
        provider_endpoint: Optional[str] = None,
        provider_type: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        timeouts: Optional[HostTimeoutsArgs] = None,
        vpc_configuration: Optional[HostVpcConfigurationArgs] = None) -> Host
func GetHost(ctx *Context, name string, id IDInput, state *HostState, opts ...ResourceOption) (*Host, error)
public static Host Get(string name, Input<string> id, HostState? state, CustomResourceOptions? opts = null)
public static Host get(String name, Output<String> id, HostState state, CustomResourceOptions options)
resources:  _:    type: aws:codeconnections:Host    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Arn string
The CodeConnections Host ARN.
Name string
The name of the host to be created. The name must be unique in the calling AWS account.
ProviderEndpoint string
The endpoint of the infrastructure to be represented by the host after it is created.
ProviderType string
The name of the external provider where your third-party code repository is configured.
Tags Dictionary<string, string>
TagsAll Dictionary<string, string>

Deprecated: Please use tags instead.

Timeouts HostTimeouts
VpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
Arn string
The CodeConnections Host ARN.
Name string
The name of the host to be created. The name must be unique in the calling AWS account.
ProviderEndpoint string
The endpoint of the infrastructure to be represented by the host after it is created.
ProviderType string
The name of the external provider where your third-party code repository is configured.
Tags map[string]string
TagsAll map[string]string

Deprecated: Please use tags instead.

Timeouts HostTimeoutsArgs
VpcConfiguration HostVpcConfigurationArgs
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
arn String
The CodeConnections Host ARN.
name String
The name of the host to be created. The name must be unique in the calling AWS account.
providerEndpoint String
The endpoint of the infrastructure to be represented by the host after it is created.
providerType String
The name of the external provider where your third-party code repository is configured.
tags Map<String,String>
tagsAll Map<String,String>

Deprecated: Please use tags instead.

timeouts HostTimeouts
vpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
arn string
The CodeConnections Host ARN.
name string
The name of the host to be created. The name must be unique in the calling AWS account.
providerEndpoint string
The endpoint of the infrastructure to be represented by the host after it is created.
providerType string
The name of the external provider where your third-party code repository is configured.
tags {[key: string]: string}
tagsAll {[key: string]: string}

Deprecated: Please use tags instead.

timeouts HostTimeouts
vpcConfiguration HostVpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
arn str
The CodeConnections Host ARN.
name str
The name of the host to be created. The name must be unique in the calling AWS account.
provider_endpoint str
The endpoint of the infrastructure to be represented by the host after it is created.
provider_type str
The name of the external provider where your third-party code repository is configured.
tags Mapping[str, str]
tags_all Mapping[str, str]

Deprecated: Please use tags instead.

timeouts HostTimeoutsArgs
vpc_configuration HostVpcConfigurationArgs
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.
arn String
The CodeConnections Host ARN.
name String
The name of the host to be created. The name must be unique in the calling AWS account.
providerEndpoint String
The endpoint of the infrastructure to be represented by the host after it is created.
providerType String
The name of the external provider where your third-party code repository is configured.
tags Map<String>
tagsAll Map<String>

Deprecated: Please use tags instead.

timeouts Property Map
vpcConfiguration Property Map
The VPC configuration to be provisioned for the host. A VPC must be configured, and the infrastructure to be represented by the host must already be connected to the VPC.

Supporting Types

HostTimeouts
, HostTimeoutsArgs

Create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Update string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
Update string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
create String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
update String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
create string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
update string
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
create str
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete str
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
update str
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
create String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
delete String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
update String
A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

HostVpcConfiguration
, HostVpcConfigurationArgs

SecurityGroupIds This property is required. List<string>
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
SubnetIds This property is required. List<string>
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
VpcId This property is required. string
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
TlsCertificate string
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
SecurityGroupIds This property is required. []string
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
SubnetIds This property is required. []string
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
VpcId This property is required. string
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
TlsCertificate string
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
securityGroupIds This property is required. List<String>
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
subnetIds This property is required. List<String>
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
vpcId This property is required. String
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
tlsCertificate String
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
securityGroupIds This property is required. string[]
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
subnetIds This property is required. string[]
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
vpcId This property is required. string
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
tlsCertificate string
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
security_group_ids This property is required. Sequence[str]
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
subnet_ids This property is required. Sequence[str]
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
vpc_id This property is required. str
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
tls_certificate str
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
securityGroupIds This property is required. List<String>
ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
subnetIds This property is required. List<String>
The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
vpcId This property is required. String
The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
tlsCertificate String
The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.

Import

Using pulumi import, import CodeConnections Host using the ARN. For example:

$ pulumi import aws:codeconnections/host:Host example-host arn:aws:codeconnections:us-west-1:0123456789:host/79d4d357-a2ee-41e4-b350-2fe39ae59448
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.