Automation and setup for sites I own.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

12 righe
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. }