20 lines
357 B
HCL
20 lines
357 B
HCL
provider "aws" {
|
|
region = var.aws_region
|
|
assume_role {
|
|
role_arn = var.tuffas_applier_role_arn
|
|
}
|
|
}
|
|
|
|
provider "cloudflare" {
|
|
}
|
|
|
|
module "static_website" {
|
|
source = "./modules/static-website"
|
|
|
|
# toset to dedupe
|
|
for_each = toset(var.site_domains)
|
|
site_domain = each.key
|
|
project_name = var.project_name
|
|
environment = var.environment
|
|
}
|