Automation and setup for sites I own.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- # 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
- }
|