AWS

The Amazon Web Services (AWS) provider for Pulumi can be used to provision any of the cloud resources available in AWS. The AWS provider must be configured with credentials to deploy and update resources in AWS.

See the full API documentation for complete details of the available AWS provider APIs.

Additionally, higher-level libraries offering simpler interfaces and higher-productivity APIs for many areas of AWS are available in the awsx and eks packages.

Setup

The AWS provider supports several options for providing access to AWS credentials. See AWS setup page for details.

Getting Started

The quickest way to get started with AWS is to follow the Get Started guide.

Additionally, there are several tutorials available to follow:

In addition to the tutorials, several interesting examples are available complete with instructions:

Introducing Pulumi Crosswalk for AWS

Use Pulumi Crosswalk for AWS to easily use the best of what AWS has to offer, with well-architected best practices, for the entire AWS cloud. Go to production with containers, Kubernetes, and serverless applications.

Get Started with Crosswalk for AWS Now

Example

const aws = require("@pulumi/aws");

const bucket = new aws.s3.Bucket("mybucket");

You can find additional examples of using AWS in the Pulumi examples repo.

Libraries

The following packages are available in package managers:

The AWS provider is open source and available in the pulumi/pulumi-aws repo.

Configuration

The AWS provider accepts the following configuration settings. These can be provided to the default AWS provider via pulumi config set aws:<option>, or passed to the constructor of new aws.Provider to construct a specific instance of the AWS provider.

  • region: (Required) The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
  • allowedAccountIds: (Optional) List of allowed AWS account IDs to prevent you from mistakenly using an incorrect one (and potentially end up destroying a live environment). Conflicts with forbiddenAccountIds.
  • accessKey: (Optional) The access key for API operations. You can retrieve this from the ‘Security & Credentials’ section of the AWS console.
  • assumeRole: (Optional) A JSON object representing an IAM role to assume. To set these nested properties, see docs on structured configuration, for example pulumi config set --path aws:assumeRole.roleArn arn:aws:iam::058111598222:role/OrganizationAccountAccessRole. The object contains the followting properties:
    • durationSeconds: (Optional) Number of seconds to restrict the assume role session duration.
    • externalId: (Optional) External identifier to use when assuming the role.
    • policy: (Optional) IAM Policy JSON describing further restricting permissions for the IAM Role being assumed.
    • policyArns: (Optional) Set of Amazon Resource Names (ARNs) of IAM Policies describing further restricting permissions for the IAM Role being assumed.
    • roleArn: (Optional) Amazon Resource Name (ARN) of the IAM Role to assume.
    • sessionName: (Optional) Session name to use when assuming the role.
    • tags: (Optional) Map of assume role session tags.
    • transitiveTagKeys: (Optional) Set of assume role session tag keys to pass to any subsequent sessions.
  • dynamodbEndpoint: (Optional) Use this to override the default endpoint URL constructed from the region. It’s typically used to connect to dynamodb-local.
  • forbiddenAccountIds: (Optional) List of forbidden AWS account IDs to prevent you from mistakenly using the wrong one (and potentially end up destroying a live environment). Conflicts with allowedAccountIds.
  • ignoreTags: (Optional) A JSON block with resource tag settings to ignore across all resources handled by this provider (except any individual service tag resources such as aws.ec2.Tag) for situations where external systems are managing certain resource tags. The ignoreTags setting can have two nested properties
    • keys: A list of exact resource tag keys to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any tags properties and displaying any diffs for the tag value. If any resource still has this tag key configured in the tags argument, it will display a perpetual diff until the tag is removed from the argument or ignoreChanges is also used.
    • keyPrefixes: A list of resource tag key prefixes to ignore across all resources handled by this provider. This configuration prevents Pulumi from returning the tag in any tags properties and displaying any diffs for the tag value. If any resource still has this tag key configured in the tags argument, it will display a perpetual diff until the tag is removed from the argument or ignoreChanges is also used.
  • insecure: (Optional) Explicitly allow the provider to perform “insecure” SSL requests. If omitted, the default value is false.
  • kinesisEndpoint: (Optional) Use this to override the default endpoint URL constructed from the region. It’s typically used to connect to kinesalite.
  • maxRetries: (Optional) The maximum number of times an AWS API request is being executed. If the API request still fails, an error is thrown.
  • profile: (Optional) The profile for API operations. If not set, the default profile created with aws configure will be used.
  • s3ForcePathStyle: (Optional) Set this to true to force the request to use path-style addressing, i.e., http://s3.amazonaws.com/BUCKET/KEY. By default, the S3 client will use virtual hosted bucket addressing when possible (http://BUCKET.s3.amazonaws.com/KEY). Specific to the Amazon S3 service.
  • secretKey: (Optional) The secret key for API operations. You can retrieve this from the ‘Security & Credentials’ section of the AWS console.
  • sharedCredentialsFile: (Optional) The path to the shared credentials file. If not set this defaults to ~/.aws/credentials.
  • skipCredentialsValidation: (Optional) Skip the credentials validation via STS API. Used for AWS API implementations that do not have STS available/implemented.
  • skipGetEc2Platforms: (Optional) Skip getting the supported EC2 platforms. Used by users that don’t have ec2:DescribeAccountAttributes permissions.
  • skipMetadataApiCheck: (Optional) Skip the AWS Metadata API check. Useful for AWS API implementations that do not have a metadata API endpoint. Setting to true prevents Pulumi from authenticating via the Metadata API. You may need to use other authentication methods like static credentials, configuration variables, or environment variables.
  • skipRegionValidation: (Optional) Skip static validation of region name. Used by users of alternative AWS-like APIs or users w/ access to regions that are not public (yet).
  • skipRequestingAccountId: (Optional) Skip requesting the account ID. Used for AWS API implementations that do not have IAM/STS API and/or metadata API.
  • token: (Optional) Use this to set an MFA token. It can also be sourced from the AWS_SESSION_TOKEN environment variable.