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.
 
 
 
 

12 wiersze
200 B

  1. # Dns defaults
  2. variable "short_dns_ttl" {
  3. type = bool
  4. default = true
  5. description = "Whether to set short dns ttl's or not."
  6. }
  7. locals {
  8. dns_ttl = var.short_dns_ttl ? 120 : 43200
  9. }