Long year: Difference between revisions

Content added Content deleted
(→‎{{header|Logo}}: Add implementation.)
(→‎{{header|Terraform}}: single-quotes are not legal string delimiters (anymore? were they ever?))
Line 2,180: Line 2,180:


=={{header|Terraform}}==
=={{header|Terraform}}==
{{works with|Terraform|0.13}}
{{works with|Terraform|0.13+}}
Contents of main module:
Contents of main module:


Line 2,222: Line 2,222:
<lang terraform>variable year {
<lang terraform>variable year {
type = string
type = string
default = ''
default = ""
}
}