Deploy the AWS SAM application
Use the AWS SAM sam deploy command with the
package.yml
file to create your Lambda functions and CodeDeploy application and deployment
group using AWS CloudFormation.
The sam deploy command is an alias for the aws cloudformation deploy AWS CLI command. For more information, see deploy in the AWS CloudFormation CLI Reference.
In the SAM-Tutorial
directory, run the following command.
sam deploy \ --template-file package.yml \ --stack-name my-date-time-app \ --capabilities CAPABILITY_IAM
The --capabilities CAPABILITY_IAM
parameter is required to authorize AWS CloudFormation
to create IAM roles.