generated from clouddrove/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
32 lines (28 loc) · 1.01 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ------------------------------------------------------------------------------
# Variables
# ------------------------------------------------------------------------------
variable "enabled" {
type = bool
default = true
description = "Whether to create the resources. Set to `false` to prevent the module from creating any resources."
}
variable "origin" {
type = string
default = ""
description = "The fully qualified domain name, (FQDN) for a Space."
}
variable "ttl" {
type = number
default = 3600
description = "The time to live for the CDN Endpoint, in seconds. Default is 3600 seconds."
}
variable "certificate_name" {
type = string
default = null
description = "The unique name of a DigitalOcean managed TLS certificate used for SSL when a custom subdomain is provided."
}
variable "custom_domain" {
type = string
default = null
description = "The fully qualified domain name (FQDN) of the custom subdomain used with the CDN Endpoint."
}