Aws Landing Zone Developer Guide
Aws Landing Zone Developer Guide
November 2018
Contents
About This Guide .................................................................................................................. 3
AWS Landing Zone Deployment .............................................................................................. 4
AWS CodePipeline Overview ................................................................................................ 4
Code Pipeline Stages ............................................................................................................. 5
Source Stage....................................................................................................................... 5
Build Stage ......................................................................................................................... 5
(Optional) Manual Approval Stage ................................................................................... 5
Core Accounts Stage .......................................................................................................... 5
Service Control Policy Stage .............................................................................................. 5
Core Resource Stage .......................................................................................................... 6
Service Catalog Stage ......................................................................................................... 6
Baseline Resource Stage .................................................................................................... 6
Launch AVM Stage ............................................................................................................ 6
AWS Landing Zone Configuration ........................................................................................... 6
Landing Zone Configuration Folder Structure ..................................................................... 6
Manifest Overview ................................................................................................................ 7
Organizational Units.......................................................................................................... 7
Organization Policies ......................................................................................................... 7
Portfolios............................................................................................................................ 7
Baseline Resources ............................................................................................................ 8
Manifest Sections .................................................................................................................. 8
Region ................................................................................................................................ 8
Version ............................................................................................................................... 8
Lock_down_stack_sets_role ............................................................................................ 8
Organizational Units ............................................................................................................. 8
Syntax ................................................................................................................................ 9
Core Accounts .................................................................................................................. 10
Page 2 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Page 3 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Page 4 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Page 5 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
- manifest.yaml
- parameters/
- aws_baseline/
- parameter files for Baseline Resources (*.json)
- core_accounts/
- parameter files for Core Resources (*.json)
- policies/
- service control policies files (*.json)
- templates/
- aws_baseline/
- template files for Baseline Resources (*.template)
- core_accounts/
- template files for Core Resources (*.template)
Page 6 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
- template_constraints/
- template constraint rules files (*.json)
Manifest Overview
The following examples show the manifest file structure and its sections:
---
region: String
version: 2018-06-14
lock_down_stack_sets_role: Boolean
organizational_units:
set of AWS Organization OUs and related core accounts
organization_policies:
set of managed AWS Organization SCPs
portfolios:
set of AWS Service Catalog portfolios and products
resources:
set of account baseline resources
Organizational Units
This manifest file section describes the AWS Organizations structure of your AWS core
accounts including related templates that define what core resources you want deployed into
these accounts. Core accounts are AWS accounts which contain resources upon which all of
your AWS Landing Zone managed accounts will depend. For example, implementing a
centralized logging account for securely storing all access logs creates dependencies between
the account storage resources (i.e. Amazon S3 bucket), and all other managed accounts.
Organization Policies
This manifest file section controls the AWS Organizations Security Control Policies (SCPs)
that are applied to the accounts in your organization. This section allows you to specify which
Organization Units (OUs) to use when applying SCPs to accounts, however, SCPs are applied
at the account level rather than the OU level. This allows SCPs to be added and removed from
specific accounts while baseline configurations are applied rather than to the OU, which
would affect all accounts in the OU, whether or not changes are being applied to a particular
account.
Portfolios
This manifest file section defines the AWS Service Catalog portfolio and products for account
baselining and add-on products. Account baselining products are used to apply and update
Page 7 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
managed account baselines using resources defined in the baseline resource section and
account OU membership. Add-on products allow AWS administrators to enhance their AWS
Landing Zone by deploying optional resources such as Amazon Elasticsearch Service
(Amazon ES) for log analytics and reporting.
Baseline Resources
This manifest file section defines the baseline resources that will be automatically configured
for OU-grouped managed accounts. For a description of out-of-the-box example
configuration baseline resources for many AWS services, see the AWS Landing Zone User
Guide.
Manifest Sections
The manifest file is described in detail in this section. Sections in the file can be in any order.
However, the order of core resources is used to determine the execution order for creating
AWS Landing Zone core account resource dependencies. For more information, see the Core
Accounts section.
Region
A text string for the AWS Landing Zone default region. This value must be a valid AWS Region
name (i.e. us-east-1, eu-west-1, ap-southeast-1). The default region will be used for creating
AWS Landing Zone resources (i.e. AWS CloudFormation StackSets, AWS Service Catalog
portfolios and products), unless a more resource-specific region is specified.
Version
The AWS Landing Zone manifest schema version number. The current version is 2018-06-
14.
Lock_down_stack_sets_role
When an account is created, the AWS Organizations preconfigured role is created
(AWSCloudFormationStackSetExecutionRole), and used by AWS Landing Zone to
manage StackSet instances. By default, this role allows any IAM principal in the AWS
Organizations account with sts:AssumeRole permissions to assume the role in a member
account. The lock_down_stack_sets_role parameter is required, and configures the
role permissions, to only allow AWS Landing Zone provisioning roles to assume the StackSets
execution role. We highly recommend setting this to true to avoid granting StackSet
execution access to users in the AWS Organizations account.
Organizational Units
Specifies the AWS Organizations Organizational Units (OUs), related core accounts to be
created in the OU, and core account resources that should be created in each core account.
Page 8 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Syntax
The OUs section consists of the key name organizational_units, a set of organizational
units, and account definitions. The following pseudo template outlines the OUs section:
Name
AWS Organizations organization unit (OU) name to be created.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
include_in_baseline_products
List of AWS Service Catalog product names to determine which AWS Landing Zone AVM
products to update to include the ability to deploy accounts into this OU.
Condition: This determines which AVM products will be able to select this OU when
creating new accounts.
Type: String
Required: Yes
core_accounts
List of Core Accounts to create in the OU.
Required: Optional
Page 9 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Core Accounts
AWS Landing Zone core accounts are defined under the Organizational Units section of the
manifest file using the key name core_accounts. The following pseudo template outlines
the accounts object:
Name
Name of the core account.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
Email
Email address for the core account.
Type: String
Required: Yes
ssm_parameters
List of SSM parameter key name and value pairs for storing AWS Organizations account
creation outputs in SSM parameter store for reference by other core or baseline resources.
Type: List of name and value key pairs where name is an SSM parameter store key name
string and value is the parameter value string.
Required: Optional
Page 10 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Account variables: When an account is created, the following table lists the variables that
can be used to store the new account’s ID, email, and AWS Organizations ID in the SSM
parameter store.
Variable Description
For example:
core_resources
List of Core Resources to deploy into the core account. Core resources are deployed in the
order in which they are provided. This allows dependencies between core resources to be
managed by listing dependent resources later in the list than the resources they depend
upon.
Required: Yes
Core Resources
AWS Landing Zone core account resources are defined under the Core Accounts section of
the manifest file using the key name core_resources. The following pseudo template
outlines the Core Resources object:
name
Name to associate with the core account resource.
Page 11 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
The provided name is used to provide a more user-friendly name for an account.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
template_file
This can be either relative location to the manifest file or an Amazon S3 URL that points
to an AWS CloudFormation template for creating core resources.
Type: String
Required: Yes
For example:
core_resources:
- name: SecurityRoles
template_file:templates/core_accounts/aws-landing-zone-
security.template
Or
core_resources:
- name: SecurityRoles
template_file:s3://my-bucket/templates/aws-landing-zone-
security.template
Note: If providing Amazon S3 URL, verify that the Bucket policy provides the read access
for the Organizations Master account deploying the Landing Zone solution.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {"AWS": "arn:aws:iam::xxxxxxxxxxx:root"},
"Action": "s3:GetObject",
Page 12 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
"Resource": "arn:aws:s3:::my-bucket/*"
}
]
}
parameter_file
This can be either relative location to the manifest file or an Amazon S3 URL that points
an AWS CloudFormation template parameter file defining the input parameters to use
when launching template_file.
Type: String
Required: Optional, if the associated AWS CloudFormation template does not have any
input parameters.
Example:
core_resources:
- name: SecurityRoles
parameter_file:parameters/core_accounts/aws-landing-zone-
security.json
Or
core_resources:
- name: SecurityRoles
template_file:s3://my-bucket/parameters/aws-landing-zone-
security.template
deploy_method
Deployment method for deploying resource(s) into the account. Currently,
deploy_method supports deploying resources using the stack_set option for deployment
through StackSets.
Type: String
Required: Yes
Page 13 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
ssm_parameters
List of SSM parameter key name and value pairs for storing template outputs in SSM
parameter store for reference by other core or baseline resources.
Type: List of name and value key pairs where name is an SSM parameter store key name
string and value is the parameter value string.
Required: Optional
For example, the following template snippet will store the template VPCID output
variable into the /org/member/sharedservices/vpc_id SSM parameter key.
Organizational Policies
Specifies the AWS Organizations SCPs to be created in each core account.
Syntax
The Organizational Policies section consists of the key name organizational_policies.
The following pseudo template outlines the Organizational Policies section:
name
Name for the AWS Organizations SCP.
Type: String
Page 14 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
description
Description for the AWS Organizations SCP.
Type: String
Required: Optional
policy_file
Location relative to the manifest file for a file containing the SCP policy to apply.
Type: String
Required: Yes
apply_to_accounts_in_ou
List of OUs to apply to accounts in this OU. AWS Landing Zone applies SCPs at the
account level rather than the OU level. This allows SCPs to be added and removed to
specific accounts while baseline configurations are applied rather than to the OU (which
would affect all accounts in the OU). This option allows OU membership to determine
which accounts the SCP will be applied to.
Required: Optional
Portfolios
Specifies the AWS Service Catalog portfolios and products to be created in the organizations
account.
Syntax
The Portfolios section consists of the key name portfolios. The following pseudo template
outlines the Portfolios section:
Page 15 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
principal_role: String
products: # List of products to add to portfolio
- List of products
name
Name for the AWS Service Catalog portfolio.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
description
Description for the AWS Service Catalog portfolio.
Type: String
Required: Optional
owner
Name to provide AWS Service Catalog for the portfolio owner field.
Type: String
Required: Optional
principal_role
IAM Role Arn to grant initial access to the portfolio in AWS Service Catalog.
Type: String
Required: Optional
products
List of AWS Landing Zone AWS Service Catalog Products.
Required: Optional
Page 16 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Products
AWS Service Catalog products are defined under the Portfolios section of the manifest file
using the key name products. The following pseudo template outlines the Products object:
name
Name to use for the AWS Service Catalog product name.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
description
Description for the AWS Service Catalog product.
Type: String
Required: Optional
product_type
Determines whether the product is an account configuration baseline or an optional
(Deprecated) product containing optional AWS Landing Zone resources.
Type: String
Required: Yes
Page 17 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Note: Optional Product Type is deprecated in Landing Zone v2.0 and replaced with the
Landing Zone Add-On
template_file
Location relative to the manifest file for a base AWS CloudFormation template for
creating the AWS Service Catalog product.
Type: String
Note: Optional Product Type is deprecated in Landing Zone v2.0 and replaced with the
Landing Zone Add-On
parameter_file
Relative location to the AWS CloudFormation template parameter file defining the input
parameter defaults for the AWS Service Catalog product.
Type: String
Note: When you add new parameter to the parameter file for the product_type =
baseline, i.e. parameters/aws_baseline/aws-landing-zone-avm.json,
provide the default parameter value, which will be used for updating the baseline for the
existing accounts.
Example:
{
"ParameterKey": "foo",
"ParameterValue": "bar"
}
skeleton_file
Relative location of a Jinja2 skeleton template that will be used to create the final AWS
Service Catalog product (Account Vending Machine) if product_type = baseline.
Type: String
Required: Yes
Page 18 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
rules_file
Relative location of a Template constraint rules file for AWS Service Catalog product
(Account Vending Machine) if product_type = baseline.
Type: String
Required: Yes
hide_old_versions
Configures whether or not AWS Landing Zone will hide previous versions of the product
in AWS Service Catalog when a new product version is deployed.
Type: String
Required: Yes
launch_constraint_role
IAM role ARN to be used for the AWS Service Catalog product launch constraint.
Type: String
Required: Yes
apply_to_accounts_in_ou
List of OUs to automatically create or update product instances for each account in the
OU. AWS Landing Zone applies baseline configurations by launching AWS Service
Catalog baseline products for accounts. This option allows OU membership to determine
which accounts baseline products will be applied to.
Required: Optional
Baseline Resources
Specifies the AWS Landing Zone account baseline configuration for managed accounts.
Syntax
The baseline resources section consists of the key name baseline_resources. The
following pseudo template outlines the Resources section:
Page 19 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
- name: String
baseline_products: #List of SSM parameter key names
- String
depends_on: # List of account baseline resource names
- String
template_file: String
parameter_file: String
deploy_method: String
regions: # List of Strings
- String
name
Name to associate with the account baseline resources. The provided name is used as part
of creating the StackSet name for this baseline configuration.
Type: String
Required: Yes
Valid Values: 'a-zA-Z0-9._-' Any other character is automatically replaced with '_'
baseline_products
List of key names for AWS Landing Zone AWS Service Catalog AVM products to associate
with this configuration resource. This option allows customers to maintain different
account baselines by associating a configuration resource with unique, multiple, or
different accounts created by different AVM products.
Required: Yes
depends_on
List of baseline resource names that this resource depends on. This option is used to
define baseline resource dependencies to control the order in which baseline resources
are deployed to managed accounts.
Type: String
Required: Optional
template_file
This can be either relative location to the manifest file or an Amazon S3 URL that points
to an AWS CloudFormation template for creating baseline resources.
Page 20 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Type: String
Required: Yes
Example:
baseline_resources:
- name: EnableCloudTrail
template_file:templates/aws_baseline/aws-landing-zone-enable-
cloudtrail.template
Or
core_resources:
- name: EnableCloudTrail
template_file:s3://my-bucket/templates/aws-landing-zone-enable-
cloudtrail.template
parameter_file
This can be either relative location to the manifest file or an Amazon S3 URL that points
an AWS CloudFormation template parameter file defining the input parameters to use
when launching template_file.
Type: String
Required: Optional, if the associated AWS CloudFormation template does not have any
input parameters.
Example:
baseline_resources:
- name: EnableCloudTrail
parameter_file:parameters/aws_baseline/aws-landing-zone-enable-
cloudtrail.json
Or
baseline_resources:
- name: EnableCloudTrail
template_file:s3://my-bucket/parameters/aws-landing-zone-enable-
cloudtrail.json
deploy_method
Deployment method for deploying the associated AWS CloudFormation template.
Page 21 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
Type: String
Required: Yes
regions
List of regions where this baseline resource should be deployed.
Type: Any AWS commercial region names as well as All to indicate that this resource
should be deployed into all regions.
Required: Yes
When the add-on product is launched, it modifies the existing Landing Zone Configuration
ZIP file inside the Amazon S3 Bucket used as the source for Landing Zone pipeline.
Note: If CodeCommit is configured as the source for the Landing Zone pipeline, it will
create the add-on Micro-configuration ZIP file in an Amazon S3 bucket. This file must
be added inside the add-on folder of CodeCommit Landing Zone repo. For more
information, see Appendix B.
For more information about deploying additional products, see AWS Landing Zone Add-On
Products.
Page 22 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
For more information on folder structure see, AWS Landing Zone Configuration section for
The Landing Zone Configuration folder structure is shown below:
- manifest.yaml
- add-on/
- add-on1.ZIP (Add-On Micro-configuration ZIP files)
- add-on2/
- add_on_manifest.yaml
- user-input.yaml
- parameters/
- parameter files (*.json)
- templates/
- template files (*.template)
- parameters/…
- policies/…
- templates/…
- template_constraints/…
Example:
The add_on_manifest.yaml is adding one core resource into the customer’s choice of core
account and one baseline resource to baseline product for the Centralized Logging Solution:
---
Page 23 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
value: $[output_DomainEndpoint]
- name: /org/member/centrallogging/master_role
value: $[output_MasterRole]
regions:
- {{ region }}
The add-on manifest (add_on_manifest.yaml) contains the snippet that will be added to
the customer’s master manifest file (manifest.yaml).
Below, the add-on manifest leverages Jinja2 markup language to find, replace and loop
through the customer provided user inputs and dynamically generate the add-on manifest
file that will then be merged with the master manifest file.
Example:
The input in the above add-on manifest file is processed through the Jinja2 preprocessor will
follow the example below:
---
Page 24 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
- name: /org/member/centrallogging/es_domain
value: $[output_DomainEndpoint]
- name: /org/member/centrallogging/master_role
value: $[output_MasterRole]
regions:
- us-east-1
Note: When merging the add-on manifest files into the main manifest file, the build stage
follows the first write wins logic whenever there is a conflict. For example, in the above case,
if the customer already has a core resources named Centralized-Logging-Primary in the
master manifest (manifest.yaml) file, it will NOT be overwritten by this add-on.
user-input.yaml
The user input YAML file is used to capture all user inputs required for the add-on in one file.
This file is then used by the build stage to dynamically update the target files with the user
provided input values using Jinja2.
Example:
input_parameters:
- file_name: add_on_manifest.yaml
parameters:
core_ou: core
core_account: shared-services
region: us-east-1
avm_products: AWS-Landing-Zone-Account-Vending-Machine
spoke_regions: [‘us-east-1’,’us-east-2’,’us-west-1’]
- file_name: parameters/core_accounts/aws-landing-zone-centralized-
logging-primary.json
parameters:
Page 25 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
domain_name: centralized-logging
domain_admin_email: [email protected]
cognito_admin_email: [email protected]
cluster_size: small
- file_name: parameters/aws_baseline/aws-landing-zone-centralized-
logging-spoke.json
parameters:
cloud_trail_region: us-east-1
The file_name section references the relative path to the target file inside the add-on folder
or ZIP file. The parameters section references the key: value pair used for find &
replace by Jinja2. For example, the core_account inside the add_on_manifest.yaml
file will be replaced with the user provided value shared-services in the above example.
Optionally, the add-on can have the following folders or files:
Add-On Templates
The add_on_manifest.yaml file refers to the relative template file(s) for Core and
Baseline resources. Optionally, the add-on manifest can refer the remote Amazon S3
template file, in which case the templates are not bundled into the add-on ZIP file.
For more information, see the Core resources or Baseline resources sub-section for
template_file.
Add-On Parameters
The add_on_manifest.yaml file can refers to the relative parameters file(s) for Core and
Baseline resources. Optionally, the add-on manifest can refer the remote Amazon S3
parameter files, in which case the parameter files are not bundled into the add-on ZIP file.
For more information, see the Core resources or Baseline resources sub-section for
parameter_file.
Page 26 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
organizational_units:
- name: production
include_in_baseline_products:
- AWS-Landing-Zone-Account-Vending-Machine
organizational_units:
- name: core
- core_accounts:
- compliance:
email: [email protected]
ssm_parameter:
- name: /accounts/compliance/account_id
value: $[AccountId]
organizational_units:
- name: core
- core_accounts:
- compliance:
email: [email protected]
ssm_parameter:
- name: /accounts/complaince/account_id
value: $[AccountId]
core_resources:
Page 27 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
- name: ComplianceMonitoring
template_file: templates/custom/compliance-
monitoring.template
parameter_file: parameters/custom/compliance-
monitoring.json
deploy_method: stack_set
regions:
- us-east-1
ssm_parameters:
- name: /org/member/compliance/resource_name
value: $[output_ComplianceResource]
baseline_resources:
- name: EnableCloudTrail
# This resource is part of which baseline(s) product
baseline_products:
- AWS-Landing-Zone-Account-Vending-Machine
template_file: templates/aws_baseline/aws-landing-zone-enable-
cloudtrail.template
parameter_file: parameters/aws_baseline/aws-landing-zone-enable-
cloudtrail.json
deploy_method: stack_set
portfolios:
- name: My_Portfolio_Name
description: My awesome portfolio of products
owner: My Company
Page 28 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
principal_role:
$[alfred_ssm_/org/primary/service_catalog/principal/role_arn]
# These products will prompt the user to select target Account
Email and Region
products:
- name: My_Product_Name
description: Description for my product
template_file: templates/my_products/my-product.template
skeleton_file: templates/my_products/my-product-
skeleton.template.j2
ssm_parameters:
- name: /ssm_parameter_to_store
value: $[output_MyProductOutput]
# Hide/Disable the old version of the product in Service
Catalog
hide_old_versions: true
product_type: optional
launch_constraint_role:
$[alfred_ssm_/org/primary/service_catalog/constraint/role_arn]
organization_policies:
- name: policy-name
description: Description for my policy
policy_file: policies/my_new_scp_for_production.json
apply_to_accounts_in_ou:
- production
Page 29 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
AWS Landing Zone configuration and updates are managed through a configuration ZIP file
stored in a configuration Amazon S3 bucket. Changes to this file triggers the configuration
and update pipeline to make changes to your AWS Landing Zone. Customers may want to
leverage a source control system like Amazon CodeCommit, or GitHub for managing their
configuration files. To move from an Amazon S3 bucket to Git for configuration source
control, use the following procedure:
1. Create an Amazon CodeCommit in your AWS Organizations account, or a GitHub
repository.
2. Connect to your new Git repository.
3. Download and extract your AWS Landing Zone configuration zip file from the AWS
Landing Zone configuration bucket to the new Git repository. Verify that you extract the
file contents to the base of the Git repository and not in the folder: aws-landing-
zone-configuration/.
4. Navigate to the AWS CodePipeline console in your AWS Organizations account.
5. Select the AWS-Landing-Zone-CodePipeline pipeline.
6. Select Edit.
7. In the first stage Source, edit the Source action.
8. Change the source provider to Amazon CodeCommit or GitHub.
9. Configure Amazon CodeCommit repository name, and branch or connect to GitHub.
10. Configure Output artifact #1 = SourceApp.
11. Select Update.
12. Changes you commit to your Git repo, will trigger the update pipeline to push changes to
your AWS Landing Zone configuration.
Page 30 of 31
Amazon Web Services – AWS Landing Zone Developer Guide November 2018
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Notices
This document is provided for informational purposes only. It represents AWS’s current product offerings and
practices as of the date of issue of this document, which are subject to change without notice. Customers are
responsible for making their own independent assessment of the information in this document and any use of
AWS’s products or services, each of which is provided “as is” without warranty of any kind, whether express or
implied. This document does not create any warranties, representations, contractual commitments, conditions
or assurances from AWS, its affiliates, suppliers or licensors. The responsibilities and liabilities of AWS to its
customers are controlled by AWS agreements, and this document is not part of, nor does it modify, any
agreement between AWS and its customers.
The AWS Landing Zone solution is licensed under the terms of the Amazon Software License available at
https://aws.amazon.com/asl/.
Page 31 of 31