You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This module requires that you provide the aws provider and an aliased provider
for the us-east-1 region (referred to as aws.virginia in the module). The
aws.virginia provider is used for ACM certificate creation/validation because
CloudFront requires ACM certificates to be in US East (N. Virginia)us-east-1.
Example provider configuration (root module)
provider "aws" {
region = "eu-west-1"
}
provider "aws" {
alias = "virginia"
region = "us-east-1"
}
Usage
IMPORTANT: We do not pin modules to versions in our examples because of the
difficulty of keeping the versions in the documentation in sync with the latest released versions.
We highly recommend that in your code you pin the version to the exact version you are
using so that your infrastructure remains stable, and update versions in a
systematic way so that they do not catch you by surprise.