Skip to content

Instantly share code, notes, and snippets.

@klein-mask
Created July 7, 2020 03:21
Show Gist options
  • Save klein-mask/b0e712b583eb6e86311229f92db5e17b to your computer and use it in GitHub Desktop.
Save klein-mask/b0e712b583eb6e86311229f92db5e17b to your computer and use it in GitHub Desktop.
resource "aws_acm_certificate" "cert" {
private_key = file("秘密鍵のファイルへのパス")
certificate_body = file("証明書のファイルへのパス")
certificate_chain = file("中間証明書のファイルへのパス")
tags = {
Name = "タグの名前(任意)"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment