File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ resource "fastly_tls_subscription" "fastly" {
22 count = length (var. subscription_domains ) > 0 ? 1 : 0
33 domains = [for domain in var . subscription_domains : domain . name ]
44 certificate_authority = " lets-encrypt"
5+ force_update = var. subscription_domains_force_update
56}
Original file line number Diff line number Diff line change @@ -53,6 +53,12 @@ variable "subscription_domains" {
5353 default = []
5454}
5555
56+ variable "subscription_domains_force_update" {
57+ default = false
58+ description = " Force update the subscription even if it has active domains. Warning: this can disable production traffic if used incorrectly."
59+ type = bool
60+ }
61+
5662variable "response_objects" {
5763 description = " List of synthetic response objects to attach to the Fastly service."
5864 type = list (object ({
You can’t perform that action at this time.
0 commit comments