Last active
March 10, 2019 18:12
-
-
Save sdomagala/7743297c70549d7994f3fa5fa268ac85 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# deploy to eu-central-1 | |
export ROUTE53_NAME=sls-latency.example.com | |
export ROUTE53_HOSTED_ZONE_ID= #<hosted zone id> | |
export DOMAIN_CERT= #<certificate id in euc1> | |
export ACCOUNT_ID= #<account id> | |
serverless deploy -s dev -r eu-central-1 | |
# deploy to us-east-1 | |
export ROUTE53_NAME=sls-latency.example.com | |
export ROUTE53_HOSTED_ZONE_ID= #<hosted zone id> | |
export DOMAIN_CERT= #<certificate id in use1> | |
export ACCOUNT_ID= #<account id> | |
serverless deploy -s dev -r us-east-1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment