Automation and setup for sites I own.
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- # Dns defaults
-
- variable "short_dns_ttl" {
- type = bool
- default = true
- description = "Whether to set short dns ttl's or not."
- }
-
- locals {
- dns_ttl = var.short_dns_ttl ? 120 : 43200
- }
|