Last active
April 19, 2020 04:36
-
-
Save cvega/ef5e0b5ee20255486fff389a47d3eff6 to your computer and use it in GitHub Desktop.
Revisions
-
cvega revised this gist
Apr 19, 2020 . No changes.There are no files selected for viewing
-
cvega revised this gist
Mar 26, 2018 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,8 @@ AWS_DEFAULT_REGION="us-east-1" DOMAIN_NAME="snakeoil.dom" cmd=$(aws acm list-certificates --region=$AWS_DEFAULT_REGION \ | jq -r ".CertificateSummaryList[] \ | select(.DomainName == $DOMAIN_NAME) \ | .CertificateArn") -
cvega created this gist
Mar 26, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ DOMAIN_NAME="snakeoil.dom" cmd=$(aws acm list-certificates \ | jq ".CertificateSummaryList[] \ | select(.DomainName == $DOMAIN_NAME) \ | .CertificateArn") echo $cmd