Created
November 30, 2018 23:52
-
-
Save jveldboom/d441b768d730575a69bf560a7759e40d to your computer and use it in GitHub Desktop.
terraform-workspaces-template
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
# S3 Bucket | |
resource "aws_s3_bucket" "deployment" { | |
bucket = "${local.deployment_bucket}" | |
} | |
# Amazon Certificate Manager | |
resource "aws_acm_certificate" "cert" { | |
domain_name = "${local.domain}" | |
validation_method = "DNS" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment