InfrastructureConfiguration

class InfrastructureConfiguration : KotlinCustomResource

Manages an Image Builder Infrastructure Configuration.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.imagebuilder.InfrastructureConfiguration("example", {
description: "example description",
instanceProfileName: exampleAwsIamInstanceProfile.name,
instanceTypes: [
"t2.nano",
"t3.micro",
],
keyPair: exampleAwsKeyPair.keyName,
name: "example",
securityGroupIds: [exampleAwsSecurityGroup.id],
snsTopicArn: exampleAwsSnsTopic.arn,
subnetId: main.id,
terminateInstanceOnFailure: true,
logging: {
s3Logs: {
s3BucketName: exampleAwsS3Bucket.bucket,
s3KeyPrefix: "logs",
},
},
tags: {
foo: "bar",
},
});
import pulumi
import pulumi_aws as aws
example = aws.imagebuilder.InfrastructureConfiguration("example",
description="example description",
instance_profile_name=example_aws_iam_instance_profile["name"],
instance_types=[
"t2.nano",
"t3.micro",
],
key_pair=example_aws_key_pair["keyName"],
name="example",
security_group_ids=[example_aws_security_group["id"]],
sns_topic_arn=example_aws_sns_topic["arn"],
subnet_id=main["id"],
terminate_instance_on_failure=True,
logging={
"s3_logs": {
"s3_bucket_name": example_aws_s3_bucket["bucket"],
"s3_key_prefix": "logs",
},
},
tags={
"foo": "bar",
})
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.ImageBuilder.InfrastructureConfiguration("example", new()
{
Description = "example description",
InstanceProfileName = exampleAwsIamInstanceProfile.Name,
InstanceTypes = new[]
{
"t2.nano",
"t3.micro",
},
KeyPair = exampleAwsKeyPair.KeyName,
Name = "example",
SecurityGroupIds = new[]
{
exampleAwsSecurityGroup.Id,
},
SnsTopicArn = exampleAwsSnsTopic.Arn,
SubnetId = main.Id,
TerminateInstanceOnFailure = true,
Logging = new Aws.ImageBuilder.Inputs.InfrastructureConfigurationLoggingArgs
{
S3Logs = new Aws.ImageBuilder.Inputs.InfrastructureConfigurationLoggingS3LogsArgs
{
S3BucketName = exampleAwsS3Bucket.Bucket,
S3KeyPrefix = "logs",
},
},
Tags =
{
{ "foo", "bar" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/imagebuilder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := imagebuilder.NewInfrastructureConfiguration(ctx, "example", &imagebuilder.InfrastructureConfigurationArgs{
Description: pulumi.String("example description"),
InstanceProfileName: pulumi.Any(exampleAwsIamInstanceProfile.Name),
InstanceTypes: pulumi.StringArray{
pulumi.String("t2.nano"),
pulumi.String("t3.micro"),
},
KeyPair: pulumi.Any(exampleAwsKeyPair.KeyName),
Name: pulumi.String("example"),
SecurityGroupIds: pulumi.StringArray{
exampleAwsSecurityGroup.Id,
},
SnsTopicArn: pulumi.Any(exampleAwsSnsTopic.Arn),
SubnetId: pulumi.Any(main.Id),
TerminateInstanceOnFailure: pulumi.Bool(true),
Logging: &imagebuilder.InfrastructureConfigurationLoggingArgs{
S3Logs: &imagebuilder.InfrastructureConfigurationLoggingS3LogsArgs{
S3BucketName: pulumi.Any(exampleAwsS3Bucket.Bucket),
S3KeyPrefix: pulumi.String("logs"),
},
},
Tags: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
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.aws.imagebuilder.InfrastructureConfiguration;
import com.pulumi.aws.imagebuilder.InfrastructureConfigurationArgs;
import com.pulumi.aws.imagebuilder.inputs.InfrastructureConfigurationLoggingArgs;
import com.pulumi.aws.imagebuilder.inputs.InfrastructureConfigurationLoggingS3LogsArgs;
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 InfrastructureConfiguration("example", InfrastructureConfigurationArgs.builder()
.description("example description")
.instanceProfileName(exampleAwsIamInstanceProfile.name())
.instanceTypes(
"t2.nano",
"t3.micro")
.keyPair(exampleAwsKeyPair.keyName())
.name("example")
.securityGroupIds(exampleAwsSecurityGroup.id())
.snsTopicArn(exampleAwsSnsTopic.arn())
.subnetId(main.id())
.terminateInstanceOnFailure(true)
.logging(InfrastructureConfigurationLoggingArgs.builder()
.s3Logs(InfrastructureConfigurationLoggingS3LogsArgs.builder()
.s3BucketName(exampleAwsS3Bucket.bucket())
.s3KeyPrefix("logs")
.build())
.build())
.tags(Map.of("foo", "bar"))
.build());
}
}
resources:
example:
type: aws:imagebuilder:InfrastructureConfiguration
properties:
description: example description
instanceProfileName: ${exampleAwsIamInstanceProfile.name}
instanceTypes:
- t2.nano
- t3.micro
keyPair: ${exampleAwsKeyPair.keyName}
name: example
securityGroupIds:
- ${exampleAwsSecurityGroup.id}
snsTopicArn: ${exampleAwsSnsTopic.arn}
subnetId: ${main.id}
terminateInstanceOnFailure: true
logging:
s3Logs:
s3BucketName: ${exampleAwsS3Bucket.bucket}
s3KeyPrefix: logs
tags:
foo: bar

Import

Using pulumi import, import aws_imagebuilder_infrastructure_configuration using the Amazon Resource Name (ARN). For example:

$ pulumi import aws:imagebuilder/infrastructureConfiguration:InfrastructureConfiguration example arn:aws:imagebuilder:us-east-1:123456789012:infrastructure-configuration/example

Properties

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) of the configuration.

Link copied to clipboard
val dateCreated: Output<String>

Date when the configuration was created.

Link copied to clipboard
val dateUpdated: Output<String>

Date when the configuration was updated.

Link copied to clipboard
val description: Output<String>?

Description for the configuration.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

Configuration block with instance metadata options for the HTTP requests that pipeline builds use to launch EC2 build and test instances. Detailed below.

Link copied to clipboard

Name of IAM Instance Profile.

Link copied to clipboard
val instanceTypes: Output<List<String>>?

Set of EC2 Instance Types.

Link copied to clipboard
val keyPair: Output<String>?

Name of EC2 Key Pair.

Link copied to clipboard

Configuration block with logging settings. Detailed below.

Link copied to clipboard
val name: Output<String>

Name for the configuration. The following arguments are optional:

Link copied to clipboard

Configuration block with placement settings that define where the instances that are launched from your image will run. Detailed below.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resourceTags: Output<Map<String, String>>?

Key-value map of resource tags to assign to infrastructure created by the configuration.

Link copied to clipboard

Set of EC2 Security Group identifiers.

Link copied to clipboard
val snsTopicArn: Output<String>?

Amazon Resource Name (ARN) of SNS Topic.

Link copied to clipboard
val subnetId: Output<String>?

EC2 Subnet identifier. Also requires security_group_ids argument.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Key-value map of resource tags to assign to the configuration. .If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard

Enable if the instance should be terminated when the pipeline fails. Defaults to false.

Link copied to clipboard
val urn: Output<String>