We recommend new projects start with resources from the AWS provider.
AWS Cloud Control
We recommend new projects start with resources from the AWS provider.
AWS Cloud Control provides coverage of all resources in the AWS Cloud Control API, including same-day access to all new AWS resources. However, some AWS resources are not yet available in AWS Cloud Control.
For new projects, we recommend starting with our primary AWS Provider and adding AWS Cloud Control resources on an as needed basis.
The AWS Cloud Control provider for Pulumi can provision many of the cloud resources available in AWS. It manages and provisions resources using the AWS Cloud Control API, which typically supports new AWS features on the day of launch. Resources available in the Pulumi AWS Cloud Control provider are based on the resources defined in the AWS CloudFormation Registry.
Hundreds of AWS resources are available in AWS Cloud Control. As AWS Cloud Control API adds resources, we will update AWS Cloud Control to include them.
AWS Cloud Control must be configured with credentials to deploy and update resources in AWS; see Installation & Configuration for instructions.
Examples
Check out the examples below to try out AWS Cloud Control:
- Create an ECS Cluster on AWS
- Host a Static Website on Amazon S3
- Launch a Simple AWS Step Function State Machine With Lambda Functions
- Create an Object Lambda access point that transforms object requests to a bucket:
import * as awsnative from "@pulumi/aws-native";
const bucket = new awsnative.s3.Bucket("source");
const accessPoint = new awsnative.s3.AccessPoint("ap", {
bucket: bucket.id,
});
const objectlambda = new awsnative.s3objectlambda.AccessPoint("objectlambda-ap", {
objectLambdaConfiguration: {
supportingAccessPoint: accessPoint.arn,
transformationConfigurations: [{
actions: ["GetObject"],
contentTransformation: {
AwsLambda: {
FunctionArn: fn.arn,
},
},
}]
}
});
import pulumi
import pulumi_aws_native as aws_native
my_bucket = aws_native.s3.Bucket("myBucket")
ap = aws_native.s3.AccessPoint("ap", bucket=my_bucket.id)
objectlambdaap = aws_native.s3objectlambda.AccessPoint("objectlambdaap", object_lambda_configuration=aws_native.s3objectlambda.AccessPointObjectLambdaConfigurationArgs(
supporting_access_point=ap.arn,
transformation_configurations=[aws_native.s3objectlambda.AccessPointTransformationConfigurationArgs(
actions=["GetObject"],
content_transformation={
"AwsLambda": {
"FunctionArn": fn.arn,
},
},
)],
))
var bucket = new AwsNative.S3.Bucket("my-bucket");
var accessPoint = new AwsNative.S3.AccessPoint("ap", new AwsNative.S3.AccessPointArgs
{
Bucket = bucket.Id
});
var objectLambda = new AwsNative.S3ObjectLambda.AccessPoint("objectlambda-ap", new AwsNative.S3ObjectLambda.AccessPointArgs
{
ObjectLambdaConfiguration = new AwsNative.S3ObjectLambda.Inputs.AccessPointObjectLambdaConfigurationArgs
{
SupportingAccessPoint = accessPoint.Arn,
TransformationConfigurations =
{
new AwsNative.S3ObjectLambda.Inputs.AccessPointTransformationConfigurationArgs
{
Actions = { "GetObject" },
ContentTransformation = fn.Arn.Apply(arn => new Dictionary<string, object>
{
["AwsLambda"] = new Dictionary<string, object>
{
["FunctionArn"] = arn
}
}
}
}
}
});
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
myBucket, err := s3.NewBucket(ctx, "myBucket", nil)
if err != nil {
return err
}
ap, err := s3.NewAccessPoint(ctx, "ap", &s3.AccessPointArgs{
Bucket: myBucket.ID(),
})
if err != nil {
return err
}
_, err = s3objectlambda.NewAccessPoint(ctx, "objectlambdaap", &s3objectlambda.AccessPointArgs{
ObjectLambdaConfiguration: &s3objectlambda.AccessPointObjectLambdaConfigurationArgs{
SupportingAccessPoint: ap.Arn,
TransformationConfigurations: s3objectlambda.AccessPointTransformationConfigurationArray{
&s3objectlambda.AccessPointTransformationConfigurationArgs{
Actions: pulumi.StringArray{
pulumi.String("GetObject"),
},
ContentTransformation: pulumi.Map{
"AwsLambda": pulumi.Map{
"FunctionArn": fn.Arn,
},
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
import java.util.Map;
import com.pulumi.Context;
import com.pulumi.Exports;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.awsnative.s3.Bucket;
import com.pulumi.awsnative.s3.AccessPoint;
import com.pulumi.awsnative.s3.AccessPointArgs;
import com.pulumi.awsnative.s3objectlambda.inputs.AccessPointObjectLambdaConfigurationArgs;
import com.pulumi.awsnative.s3objectlambda.inputs.AccessPointTransformationConfigurationArgs;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
private static void stack(Context ctx) {
final var bucket = new Bucket("source");
final var accessPoint = new AccessPoint("ap", AccessPointArgs.builder()
.bucket(bucket.getId())
.build());
final Output<String> functionArn = /* your function arn */;
final var contentTransform = functionArn.applyValue(arn ->
Map.of("AwsLambda", Map.of("FunctionArn", arn))
);
final var objectLambdaConfig = AccessPointObjectLambdaConfigurationArgs
.builder()
.supportingAccessPoint(accessPoint.arn())
.transformationConfigurations(
AccessPointTransformationConfigurationArgs
.builder()
.actions("GetObject")
.contentTransformation(contentTransform)
.build()
)
.build();
final var objectLambdaArgs = com.pulumi.awsnative.s3objectlambda.AccessPointArgs
.builder()
.objectLambdaConfiguration(objectLambdaConfig)
.build();
final var objectLambda = new com.pulumi.awsnative.s3objectlambda.AccessPoint("objectlambda-ap", objectLambdaArgs);
ctx.export("objectLambdaArn", objectLambda.arn());
}
}
resources:
myBucket:
type: 'aws-native:s3:Bucket'
ap:
type: 'aws-native:s3:AccessPoint'
properties:
bucket: '${myBucket}'
action:
type: 'aws-native:s3objectlambda:AccessPoint'
properties:
objectLambdaConfiguration:
supportingAccessPoint: '${ap.Arn}'
transformationConfigurations:
- actions:
- GetObject
contentTransformation:
AwsLambda:
FunctionArn: '${fn.Arn}'
Third Party Resources
The SDK for the AWS Cloud Control provider only includes resources for which Amazon have published the corresponding CloudFormation specifications. AWS also supports CloudFormation extensions via the CloudFormation registry which can also be accessed via Cloud Control.
If you want to manage resources using Pulumi’s AWS Cloud Control Provider which aren’t in the SDK, you can use the ExtensionResource resource within root of the SDK. The input properties and output properties are untyped allowing passing in any arbitrary values which will be passed to the Cloud Control API and tracked with Pulumi’s managed state model.
Here’s a very simple demonstration of using the ExtensionResource to create an S3 bucket:
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myBucket = new aws_native.ExtensionResource("myBucket", {
type: "AWS::S3::Bucket",
properties: {
BucketName: "my-bucket",
},
});
import pulumi
import pulumi_aws_native as aws_native
my_bucket = aws_native.ExtensionResource("myBucket",
type="AWS::S3::Bucket",
properties={
"BucketName": "my-bucket",
})
package main
import (
awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := awsnative.NewExtensionResource(ctx, "myBucket", &awsnative.ExtensionResourceArgs{
Type: pulumi.String("AWS::S3::Bucket"),
Properties: pulumi.Map{
"BucketName": pulumi.Any("my-bucket"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myBucket = new AwsNative.ExtensionResource("myBucket", new()
{
Type = "AWS::S3::Bucket",
Properties =
{
{ "BucketName", "my-bucket" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.awsnative.ExtensionResource;
import com.pulumi.awsnative.ExtensionResourceArgs;
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 myBucket = new ExtensionResource("myBucket", ExtensionResourceArgs.builder()
.type("AWS::S3::Bucket")
.properties(Map.of("BucketName", "my-bucket"))
.build());
}
}
resources:
myBucket:
type: 'aws-native:index:ExtensionResource'
properties:
type: 'AWS::S3::Bucket'
properties:
BucketName: my-bucket
We recommend new projects start with resources from the AWS provider.