Makes usage of https for pdfs

This commit is contained in:
Bryce
2023-08-04 09:41:22 -07:00
parent ea4ccf731e
commit e2b67bde91
7 changed files with 464 additions and 74 deletions

View File

@@ -238,6 +238,12 @@ resource "aws_acm_certificate" "cert" {
validation_method = "DNS"
}
resource "aws_acm_certificate" "data_cert" {
domain_name = "data.${var.stage}.app.integreatconsult.com"
validation_method = "DNS"
}
resource "aws_service_discovery_service" "service" {
name = "integreat-app-${var.stage}"