go-aws

command module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 26, 2025 License: MIT Imports: 11 Imported by: 0

README

AWS SDK wrapper for Go

setting the custom domain in SAM

create the certificate in ACM

aws acm request-certificate \
  --domain-name subdomain \
  --validation-method DNS \
  --region ap-northeast-1

You actually can acm with cloudformation, but I prefer to use the cli due to the condition that I have to wait for the validation.

Next, you build and deploy the SAM application with the custom domain name, hosted zone ID, and certificate ARN:

sam build
sam deploy \
  --parameter-overrides \
  "CustomDomainName=custom_domain \
  HostedZoneId=route53 hostedZoneID \
  CertificateArn=arn_made_with_acm_request-certificate " \
  --capabilities CAPABILITY_IAM

create acm

aws acm request-certificate \
  --domain-name domain_name \
  --validation-method DNS \
  --region ap-northeast-1

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL