One of the best practices of managing multiple accounts in the AWS environments is to leverage use of AWS Control Tower.
As part of operational activity all AWS accounts needs to be enrolled with the right support level. By the use of AWS Control Tower account creation with required security and governance controls becomes easy, and provides options to further customize using lifecycle events.
This project utilizes one such event "CreateManagedAccount" to automate support case creation while requesting the newly created account to be enrolled in Enterprise Support tier.
This project contains source code and supporting files for a serverless application that you can deploy with the SAM CLI. It includes the following files and folders:
- functions - Code for the application's Lambda functions to check the value of, buy, or sell shares of a stock.
- template.yaml - A template that defines the application's AWS resources.
- IAM user or profile with permission to create all the required resources as per the architecture
- Enterprise support enabled on the management account, this allows for AWS Support API access
- Deployment should be done in Control Tower home region
- SAM CLI - Install the SAM CLI
- Python 3 installed
AWS Serverless Application Model is a great way to package and quickly deploy serverless applications such of these which are completely event driven, to learn more about SAM refer to AWS documentation.
The SAM CLI is an extension of the AWS CLI that adds functionality for building and testing Lambda applications. It uses Docker to run your functions in an Amazon Linux environment that matches Lambda.
git clone https://github.com/vsr2158/SAM_enable_enterprisesupport_controltower_linked.git
To build and deploy your application for the first time, run the following in your shell:
cd SAM_enable_enterprisesupport_controltower_linked/
sam build
sam deploy --guided
The first command will build the source of your application. The second command will package and deploy your application to AWS, with a series of prompts:
- Stack Name: The name of the stack to deploy to CloudFormation. This should be unique to your account and region, and a good starting point would be something matching your project name.
- AWS Region: The AWS region you want to deploy your app to. This should match your ControlTower home region.
- Confirm changes before deploy: If set to yes, any change sets will be shown to you before execution for manual review. If set to no, the AWS SAM CLI will automatically deploy application changes.
- Allow SAM CLI IAM role creation: Many AWS SAM templates, including this example, create AWS IAM roles required for the AWS Lambda function(s) included to access AWS services. By default, these are scoped down to minimum required permissions. To deploy an AWS CloudFormation stack which creates or modifies IAM roles, the
CAPABILITY_IAM
value forcapabilities
must be provided. If permission isn't provided through this prompt, to deploy this example you must explicitly pass--capabilities CAPABILITY_IAM
to thesam deploy
command. - Save arguments to samconfig.toml: If set to yes, your choices will be saved to a configuration file inside the project, so that in the future you can just re-run
sam deploy
without parameters to deploy changes to your application.
Finally to delete the application that you created, use the AWS CLI. Assuming you used your project name for the stack name, you can run the following:
aws cloudformation delete-stack --stack-name function_enable_enterprisesupport_controltower_linked
See the AWS SAM developer guide for an introduction to SAM specification, the SAM CLI, and serverless application concepts.