169163334 - Adds CDN module

Basic CDN module with configurable origin.
This commit is contained in:
Rob Gil
2019-12-18 18:45:25 -05:00
parent 585d52f045
commit 6d64665474
4 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
variable "region" {
type = string
description = "Region this module and resources will be created in"
}
variable "name" {
type = string
description = "Unique name for the services in this module"
}
variable "environment" {
type = string
description = "Environment these resources reside (prod, dev, staging, etc)"
}
variable "owner" {
type = string
description = "Owner of the environment and resources created in this module"
}
variable "sku" {
type = string
description = "SKU of which CDN to use"
default = "Standard_Verizon"
}
variable "origin_host_name" {
type = string
description = "Subdomain to use for the origin in requests to the CDN"
}