This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This module transforms the time variable into an | |
# RFC 3339 formated date in UTC timezone | |
locals { | |
time_ZZZZZ = formatdate( | |
"YYYY-MM-DD'T'hh:mm:ssZZZZZ", | |
var.time) | |
time_zoneless = formatdate( | |
"YYYY-MM-DD'T'hh:mm:ss", | |
var.time) | |
time_zone_sign = substr( |