Try AWS Native preview for resources not in the classic version.
aws.codestarconnections.Host
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a CodeStar Host.
NOTE: The
aws.codestarconnections.Host
resource 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 hostResource = new Aws.CodeStarConnections.Host("hostResource", 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, "hostResource", &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 hostResource = new Host("hostResource", HostArgs.builder()
.providerEndpoint("string")
.providerType("string")
.name("string")
.vpcConfiguration(HostVpcConfigurationArgs.builder()
.securityGroupIds("string")
.subnetIds("string")
.vpcId("string")
.tlsCertificate("string")
.build())
.build());
host_resource = aws.codestarconnections.Host("hostResource",
provider_endpoint="string",
provider_type="string",
name="string",
vpc_configuration={
"securityGroupIds": ["string"],
"subnetIds": ["string"],
"vpcId": "string",
"tlsCertificate": "string",
})
const hostResource = new aws.codestarconnections.Host("hostResource", {
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
The Host resource accepts the following input properties:
- Provider
Endpoint string - The endpoint of the infrastructure to be represented by the host after it is created.
- Provider
Type 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.
- Vpc
Configuration 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 string - The endpoint of the infrastructure to be represented by the host after it is created.
- Provider
Type 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.
- 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.
- provider
Endpoint String - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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.
- vpc
Configuration 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 string - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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.
- vpc
Configuration 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.
- provider
Endpoint String - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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.
- vpc
Configuration 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) -> 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)
Resource lookup is not supported in YAML
- 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.
- Provider
Endpoint string - The endpoint of the infrastructure to be represented by the host after it is created.
- Provider
Type 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
. - Vpc
Configuration 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.
- Provider
Endpoint string - The endpoint of the infrastructure to be represented by the host after it is created.
- Provider
Type 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
. - 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.
- provider
Endpoint String - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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
. - vpc
Configuration 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.
- provider
Endpoint string - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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
. - vpc
Configuration 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.
- provider
Endpoint String - The endpoint of the infrastructure to be represented by the host after it is created.
- provider
Type 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
. - vpc
Configuration 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
- Security
Group 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.
- Subnet
Ids List<string> - The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- Vpc
Id string - The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
- Tls
Certificate string - The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
- Security
Group []stringIds - 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 []string - The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- Vpc
Id string - The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
- Tls
Certificate string - The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
- security
Group 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.
- subnet
Ids List<String> - The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- vpc
Id String - The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
- tls
Certificate String - The value of the Transport Layer Security (TLS) certificate associated with the infrastructure where your provider type is installed.
- security
Group 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.
- subnet
Ids string[] - The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- vpc
Id string - The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
- tls
Certificate 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.
- security
Group 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.
- subnet
Ids List<String> - The ID of the subnet or subnets associated with the Amazon VPC connected to the infrastructure where your provider type is installed.
- vpc
Id String - The ID of the Amazon VPC connected to the infrastructure where your provider type is installed.
- tls
Certificate 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
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.