Automation and setup for sites I own.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- # 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
- }
|