aws.codestarconnections.Host
Explore with Pulumi AI
Provides a CodeStar Host.
NOTE: The
aws.codestarconnections.Hostresource is created in the statePENDING. Authentication with the host provider must be completed in the AWS Console. For more information visit Set up a pending host.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.codestarconnections.Host("example", {
    name: "example-host",
    providerEndpoint: "https://example.com",
    providerType: "GitHubEnterpriseServer",
});
import pulumi
import pulumi_aws as aws
example = aws.codestarconnections.Host("example",
    name="example-host",
    provider_endpoint="https://example.com",
    provider_type="GitHubEnterpriseServer")
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/codestarconnections"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := codestarconnections.NewHost(ctx, "example", &codestarconnections.HostArgs{
			Name:             pulumi.String("example-host"),
			ProviderEndpoint: pulumi.String("https://example.com"),
			ProviderType:     pulumi.String("GitHubEnterpriseServer"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var example = new Aws.CodeStarConnections.Host("example", new()
    {
        Name = "example-host",
        ProviderEndpoint = "https://example.com",
        ProviderType = "GitHubEnterpriseServer",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.codestarconnections.Host;
import com.pulumi.aws.codestarconnections.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());
    }
}
resources:
  example:
    type: aws:codestarconnections:Host
    properties:
      name: example-host
      providerEndpoint: https://example.com
      providerType: GitHubEnterpriseServer
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,
         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)type: aws:codestarconnections:Host
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 HostArgs
- 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 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 string
- The unique name of the resource.
- args HostArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HostArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 awsHostResource = new Aws.CodeStarConnections.Host("awsHostResource", new()
{
    ProviderEndpoint = "string",
    ProviderType = "string",
    Name = "string",
    VpcConfiguration = new Aws.CodeStarConnections.Inputs.HostVpcConfigurationArgs
    {
        SecurityGroupIds = new[]
        {
            "string",
        },
        SubnetIds = new[]
        {
            "string",
        },
        VpcId = "string",
        TlsCertificate = "string",
    },
});
example, err := codestarconnections.NewHost(ctx, "awsHostResource", &codestarconnections.HostArgs{
	ProviderEndpoint: pulumi.String("string"),
	ProviderType:     pulumi.String("string"),
	Name:             pulumi.String("string"),
	VpcConfiguration: &codestarconnections.HostVpcConfigurationArgs{
		SecurityGroupIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		SubnetIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		VpcId:          pulumi.String("string"),
		TlsCertificate: pulumi.String("string"),
	},
})
var awsHostResource = new Host("awsHostResource", HostArgs.builder()
    .providerEndpoint("string")
    .providerType("string")
    .name("string")
    .vpcConfiguration(HostVpcConfigurationArgs.builder()
        .securityGroupIds("string")
        .subnetIds("string")
        .vpcId("string")
        .tlsCertificate("string")
        .build())
    .build());
aws_host_resource = aws.codestarconnections.Host("awsHostResource",
    provider_endpoint="string",
    provider_type="string",
    name="string",
    vpc_configuration={
        "security_group_ids": ["string"],
        "subnet_ids": ["string"],
        "vpc_id": "string",
        "tls_certificate": "string",
    })
const awsHostResource = new aws.codestarconnections.Host("awsHostResource", {
    providerEndpoint: "string",
    providerType: "string",
    name: "string",
    vpcConfiguration: {
        securityGroupIds: ["string"],
        subnetIds: ["string"],
        vpcId: "string",
        tlsCertificate: "string",
    },
});
type: aws:codestarconnections:Host
properties:
    name: string
    providerEndpoint: string
    providerType: string
    vpcConfiguration:
        securityGroupIds:
            - string
        subnetIds:
            - string
        tlsCertificate: string
        vpcId: string
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 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.
- Name string
- The name of the host to be created. The name must be unique in the calling AWS account.
- VpcConfiguration HostVpc Configuration 
- 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 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.
- Name string
- The name of the host to be created. The name must be unique in the calling AWS account.
- VpcConfiguration HostVpc Configuration Args 
- 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 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.
- name String
- The name of the host to be created. The name must be unique in the calling AWS account.
- vpcConfiguration HostVpc Configuration 
- 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 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.
- name string
- The name of the host to be created. The name must be unique in the calling AWS account.
- vpcConfiguration HostVpc Configuration 
- 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 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.
- name str
- The name of the host to be created. The name must be unique in the calling AWS account.
- vpc_configuration HostVpc Configuration Args 
- 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 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.
- name String
- The name of the host to be created. The name must be unique in the calling AWS account.
- 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:
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,
        status: Optional[str] = None,
        vpc_configuration: Optional[HostVpcConfigurationArgs] = None) -> Hostfunc 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:codestarconnections:Host    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.
- Arn string
- The CodeStar 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.
- Status string
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- VpcConfiguration HostVpc Configuration 
- 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 CodeStar 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.
- Status string
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- VpcConfiguration HostVpc Configuration Args 
- 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 CodeStar 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.
- status String
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- vpcConfiguration HostVpc Configuration 
- 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 CodeStar 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.
- status string
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- vpcConfiguration HostVpc Configuration 
- 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 CodeStar 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.
- status str
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- vpc_configuration HostVpc Configuration Args 
- 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 CodeStar 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.
- status String
- The CodeStar Host status. Possible values are PENDING,AVAILABLE,VPC_CONFIG_DELETING,VPC_CONFIG_INITIALIZING, andVPC_CONFIG_FAILED_INITIALIZATION.
- 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
HostVpcConfiguration, HostVpcConfigurationArgs      
- SecurityGroup List<string>Ids 
- ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- SubnetIds 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 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.
- SecurityGroup []stringIds 
- ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- SubnetIds []string
- The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- VpcId 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.
- securityGroup List<String>Ids 
- ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- subnetIds 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 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.
- securityGroup string[]Ids 
- ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- subnetIds string[]
- The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- vpcId 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_ Sequence[str]ids 
- 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 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 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.
- securityGroup List<String>Ids 
- ID of the security group or security groups associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- subnetIds 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 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 CodeStar Host using the ARN. For example:
$ pulumi import aws:codestarconnections/host:Host example-host arn:aws:codestar-connections:us-west-1:0123456789:host/79d4d357-a2ee-41e4-b350-2fe39ae59448
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 awsTerraform Provider.