summaryrefslogtreecommitdiff
path: root/infrastructure/acm.tf
diff options
context:
space:
mode:
Diffstat (limited to 'infrastructure/acm.tf')
-rw-r--r--infrastructure/acm.tf4
1 files changed, 4 insertions, 0 deletions
diff --git a/infrastructure/acm.tf b/infrastructure/acm.tf
new file mode 100644
index 0000000..f07a0eb
--- /dev/null
+++ b/infrastructure/acm.tf
@@ -0,0 +1,4 @@
+data "aws_acm_certificate" "joeac_ssl_certificate" {
+ domain = local.domain
+ statuses = ["ISSUED"]
+}