amplify
This component is responsible for provisioning AWS Amplify apps, backend environments, branches, domain associations, and webhooks.
Usage
Stack Level: Regional
Here's an example for how to use this component:
# stacks/catalog/amplify/defaults.yaml
components:
terraform:
amplify/defaults:
metadata:
type: abstract
settings:
spacelift:
workspace_enabled: true
vars:
enabled: true
# https://docs.aws.amazon.com/amplify/latest/userguide/setting-up-GitHub-access.html
github_personal_access_token_secret_path: "/amplify/github_personal_access_token"
platform: "WEB"
enable_auto_branch_creation: false
enable_basic_auth: false
enable_branch_auto_build: true
enable_branch_auto_deletion: false
iam_service_role_enabled: false
environment_variables: {}
dns_delegated_component_name: "dns-delegated"
dns_delegated_environment_name: "gbl"
# stacks/catalog/amplify/example.yaml
import:
- catalog/amplify/defaults
components:
terraform:
amplify/example:
metadata:
# Point to the Terraform component
component: amplify
inherits:
# Inherit the default settings
- amplify/defaults
vars:
name: "example"
description: "example Amplify App"
repository: "https://github.com/cloudposse/amplify-test2"
platform: "WEB_COMPUTE"
enable_auto_branch_creation: false
enable_basic_auth: false
enable_branch_auto_build: true
enable_branch_auto_deletion: false
iam_service_role_enabled: true
# https://docs.aws.amazon.com/amplify/latest/userguide/ssr-CloudWatch-logs.html
iam_service_role_actions:
- "logs:CreateLogStream"
- "logs:CreateLogGroup"
- "logs:DescribeLogGroups"
- "logs:PutLogEvents"
custom_rules: []
auto_branch_creation_patterns: []
environment_variables:
NEXT_PRIVATE_STANDALONE: false
NEXT_PUBLIC_TEST: test
_LIVE_UPDATES: '[{"pkg":"node","type":"nvm","version":"16"},{"pkg":"next-version","type":"internal","version":"13.1.1"}]'
environments:
main:
branch_name: "main"
enable_auto_build: true
backend_enabled: false
enable_performance_mode: false
enable_pull_request_preview: false
framework: "Next.js - SSR"
stage: "PRODUCTION"
environment_variables: {}
develop:
branch_name: "develop"
enable_auto_build: true
backend_enabled: false
enable_performance_mode: false
enable_pull_request_preview: false
framework: "Next.js - SSR"
stage: "DEVELOPMENT"
environment_variables: {}
domain_config:
enable_auto_sub_domain: false
wait_for_verification: false
sub_domain:
- branch_name: "main"
prefix: "example-prod"
- branch_name: "develop"
prefix: "example-dev"
subdomains_dns_records_enabled: true
certificate_verification_dns_record_enabled: false
The amplify/example YAML configuration defines an Amplify app in AWS. The app is set up to use the Next.js framework
with SSR (server-side rendering) and is linked to the GitHub repository "https://github.com/cloudposse/amplify-test2".
The app is set up to have two environments: main and develop. Each environment has different configuration settings,
such as the branch name, framework, and stage. The main environment is set up for production, while the develop
environments is set up for development.
The app is also configured to have custom subdomains for each environment, with prefixes such as example-prod and
example-dev. The subdomains are configured to use DNS records, which are enabled through the
subdomains_dns_records_enabled variable.
The app also has an IAM service role configured with specific IAM actions, and environment variables set up for each
environment. Additionally, the app is configured to use the Atmos Spacelift workspace, as indicated by the
workspace_enabled: true setting.
The amplify/example Atmos component extends the amplify/defaults component.
The amplify/example configuration is imported into the stacks/mixins/stage/dev.yaml stack config file to be
provisioned in the dev account.
# stacks/mixins/stage/dev.yaml
import:
- catalog/amplify/example
You can execute the following command to provision the Amplify app using Atmos:
atmos terraform apply amplify/example -s <stack>
Variables
Required Variables
region(string) requiredAWS region
Optional Variables
auto_branch_creation_configoptionalThe automated branch creation configuration for the Amplify app
Type:
object({
basic_auth_credentials = optional(string)
build_spec = optional(string)
enable_auto_build = optional(bool)
enable_basic_auth = optional(bool)
enable_performance_mode = optional(bool)
enable_pull_request_preview = optional(bool)
environment_variables = optional(map(string))
framework = optional(string)
pull_request_environment_name = optional(string)
stage = optional(string)
})Default value:
nullauto_branch_creation_patterns(list(string)) optionalThe automated branch creation glob patterns for the Amplify app
Default value:
[ ]basic_auth_credentials(string) optionalThe credentials for basic authorization for the Amplify app
Default value:
nullbuild_spec(string) optionalThe build specification (build spec) for the Amplify app.
If not provided then it will use theamplify.ymlat the root of your project / branch.Default value:
nullcertificate_verification_dns_record_enabled(bool) optionalWhether or not to create DNS records for SSL certificate validation.
If using the DNS zone fromdns-delegated, the SSL certificate is already validated, and this variable must be set tofalse.Default value:
falsecustom_rulesoptionalThe custom rules to apply to the Amplify App
Type:
list(object({
condition = optional(string)
source = string
status = optional(string)
target = string
}))Default value:
[ ]description(string) optionalThe description for the Amplify app
Default value:
nulldns_delegated_component_name(string) optionalThe component name of
dns-delegatedDefault value:
"dns-delegated"dns_delegated_environment_name(string) optionalThe environment name of
dns-delegatedDefault value:
"gbl"domain_configoptionalAmplify custom domain configuration
Type:
object({
domain_name = optional(string)
enable_auto_sub_domain = optional(bool, false)
wait_for_verification = optional(bool, false)
sub_domain = list(object({
branch_name = string
prefix = string
}))
})Default value:
nullenable_auto_branch_creation(bool) optionalEnables automated branch creation for the Amplify app
Default value:
falseenable_basic_auth(bool) optionalEnables basic authorization for the Amplify app.
This will apply to all branches that are part of this app.Default value:
falseenable_branch_auto_build(bool) optionalEnables auto-building of branches for the Amplify App
Default value:
trueenable_branch_auto_deletion(bool) optionalAutomatically disconnects a branch in the Amplify Console when you delete a branch from your Git repository
Default value:
falseenvironment_variables(map(string)) optionalThe environment variables for the Amplify app
Default value:
{ }environmentsoptionalThe configuration of the environments for the Amplify App
Type:
map(object({
branch_name = optional(string)
backend_enabled = optional(bool, false)
environment_name = optional(string)
deployment_artifacts = optional(string)
stack_name = optional(string)
display_name = optional(string)
description = optional(string)
enable_auto_build = optional(bool)
enable_basic_auth = optional(bool)
enable_notification = optional(bool)
enable_performance_mode = optional(bool)
enable_pull_request_preview = optional(bool)
environment_variables = optional(map(string))
framework = optional(string)
pull_request_environment_name = optional(string)
stage = optional(string)
ttl = optional(number)
webhook_enabled = optional(bool, false)
}))Default value:
{ }github_personal_access_token_secret_path(string) optionalPath to the GitHub personal access token in AWS Parameter Store
Default value:
"/amplify/github_personal_access_token"iam_service_role_actions(list(string)) optionalList of IAM policy actions for the AWS Identity and Access Management (IAM) service role for the Amplify app.
If not provided, the default set of actions will be used for the role if the variableiam_service_role_enabledis set totrue.Default value:
[ ]iam_service_role_arn(list(string)) optionalThe AWS Identity and Access Management (IAM) service role for the Amplify app.
If not provided, a new role will be created if the variableiam_service_role_enabledis set totrue.Default value:
[ ]iam_service_role_enabled(bool) optionalFlag to create the IAM service role for the Amplify app
Default value:
falseoauth_token(string) optionalThe OAuth token for a third-party source control system for the Amplify app.
The OAuth token is used to create a webhook and a read-only deploy key.
The OAuth token is not stored.Default value:
nullplatform(string) optionalThe platform or framework for the Amplify app
Default value:
"WEB"repository(string) optionalThe repository for the Amplify app
Default value:
nullsubdomains_dns_records_enabled(bool) optionalWhether or not to create DNS records for the Amplify app custom subdomains
Default value:
false
Context Variables
The following variables are defined in the context.tf file of this module and part of the terraform-null-label pattern.
context.tf file of this module and part of the terraform-null-label pattern.additional_tag_map(map(string)) optionalAdditional key-value pairs to add to each map in
tags_as_list_of_maps. Not added totagsorid.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration.Required: No
Default value:
{ }attributes(list(string)) optionalID element. Additional attributes (e.g.
workersorcluster) to add toid,
in the order they appear in the list. New attributes are appended to the
end of the list. The elements of the list are joined by thedelimiter
and treated as a single ID element.Required: No
Default value:
[ ]context(any) optionalSingle object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables asnullto use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional_tag_map, which are merged.Required: No
Default value:
{
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}delimiter(string) optionalDelimiter to be used between ID elements.
Defaults to-(hyphen). Set to""to use no delimiter at all.Required: No
Default value:
nulldescriptor_formats(any) optionalDescribe additional descriptors to be output in the
descriptorsoutput map.
Map of maps. Keys are names of descriptors. Values are maps of the form
\{<br/> format = string<br/> labels = list(string)<br/> \}
(Type isanyso the map values can later be enhanced to provide additional options.)
formatis a Terraform format string to be passed to theformat()function.
labelsis a list of labels, in order, to pass toformat()function.
Label values will be normalized before being passed toformat()so they will be
identical to how they appear inid.
Default is{}(descriptorsoutput will be empty).Required: No
Default value:
{ }enabled(bool) optionalSet to false to prevent the module from creating any resources
Required: NoDefault value:
nullenvironment(string) optionalID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT'
Required: NoDefault value:
nullid_length_limit(number) optionalLimit
idto this many characters (minimum 6).
Set to0for unlimited length.
Set tonullfor keep the existing setting, which defaults to0.
Does not affectid_full.Required: No
Default value:
nulllabel_key_case(string) optionalControls the letter case of the
tagskeys (label names) for tags generated by this module.
Does not affect keys of tags passed in via thetagsinput.
Possible values:lower,title,upper.
Default value:title.Required: No
Default value:
nulllabel_order(list(string)) optionalThe order in which the labels (ID elements) appear in the
id.
Defaults to ["namespace", "environment", "stage", "name", "attributes"].
You can omit any of the 6 labels ("tenant" is the 6th), but at least one must be present.Required: No
Default value:
nulllabel_value_case(string) optionalControls the letter case of ID elements (labels) as included in
id,
set as tag values, and output by this module individually.
Does not affect values of tags passed in via thetagsinput.
Possible values:lower,title,upperandnone(no transformation).
Set this totitleand setdelimiterto""to yield Pascal Case IDs.
Default value:lower.Required: No
Default value:
nulllabels_as_tags(set(string)) optionalSet of labels (ID elements) to include as tags in the
tagsoutput.
Default is to include all labels.
Tags with empty values will not be included in thetagsoutput.
Set to[]to suppress all generated tags.
Notes:
The value of thenametag, if included, will be theid, not thename.
Unlike othernull-labelinputs, the initial setting oflabels_as_tagscannot be
changed in later chained modules. Attempts to change it will be silently ignored.Required: No
Default value:
[
"default"
]name(string) optionalID element. Usually the component or solution name, e.g. 'app' or 'jenkins'.
This is the only ID element not also included as atag.
The "name" tag is set to the fullidstring. There is no tag with the value of thenameinput.Required: No
Default value:
nullnamespace(string) optionalID element. Usually an abbreviation of your organization name, e.g. 'eg' or 'cp', to help ensure generated IDs are globally unique
Required: NoDefault value:
nullregex_replace_chars(string) optionalTerraform regular expression (regex) string.
Characters matching the regex will be removed from the ID elements.
If not set,"/[^a-zA-Z0-9-]/"is used to remove all characters other than hyphens, letters and digits.Required: No
Default value:
nullstage(string) optionalID element. Usually used to indicate role, e.g. 'prod', 'staging', 'source', 'build', 'test', 'deploy', 'release'
Required: NoDefault value:
nulltags(map(string)) optionalAdditional tags (e.g.
{'BusinessUnit': 'XYZ'}).
Neither the tag keys nor the tag values will be modified by this module.Required: No
Default value:
{ }tenant(string) optionalID element (Rarely used, not included by default). A customer identifier, indicating who this instance of a resource is for
Required: NoDefault value:
null
Outputs
arnAmplify App ARN
backend_environmentsCreated backend environments
branch_namesThe names of the created Amplify branches
default_domainAmplify App domain (non-custom)
domain_association_arnARN of the domain association
domain_association_certificate_verification_dns_recordThe DNS record for certificate verification
domain_associationsDomain associations
nameAmplify App name
sub_domainsDNS records and the verified status for the subdomains
webhooksCreated webhooks
Dependencies
Requirements
terraform, version:>= 1.3.0aws, version:>= 4.9.0, < 6.0.0
Providers
aws, version:>= 4.9.0, < 6.0.0
Modules
| Name | Version | Source | Description |
|---|---|---|---|
amplify_app | 1.2.0 | cloudposse/amplify-app/aws | n/a |
certificate_verification_dns_record | 0.13.0 | cloudposse/route53-cluster-hostname/aws | Create the SSL certificate validation record |
dns_delegated | 1.8.0 | cloudposse/stack-config/yaml//modules/remote-state | n/a |
iam_roles | latest | ../account-map/modules/iam-roles | n/a |
subdomains_dns_record | 0.13.0 | cloudposse/route53-cluster-hostname/aws | Create DNS records for the subdomains |
this | 0.25.0 | cloudposse/label/null | n/a |
Resources
The following resources are used by this module:
Data Sources
The following data sources are used by this module:
aws_ssm_parameter.github_pat(data source)