2019-01-18 20:22:26 +00:00
|
|
|
# Deploying the InfluxData Docs
|
|
|
|
|
|
|
|
Use the following command to deploy a CloudFormation stack using the template in this directory.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
aws cloudformation deploy \
|
2020-08-27 05:19:33 +00:00
|
|
|
--template-file deploy/docs-website.yml \
|
2019-01-18 20:22:26 +00:00
|
|
|
--stack-name="${STACK_NAME}" \
|
2019-01-18 22:28:40 +00:00
|
|
|
--capabilities CAPABILITY_IAM \
|
2019-01-18 20:22:26 +00:00
|
|
|
--parameter-overrides \
|
|
|
|
AcmCertificateArn="${ACM_ARN}" \
|
|
|
|
DomainName="${DOMAIN_NAME}"
|
|
|
|
```
|
|
|
|
|
2020-09-02 20:18:46 +00:00
|
|
|
To only display actions that will be taken, in the `--no-execute-changeset` option.
|
|
|
|
Without this option, the command executes and deploys the changeset.
|