Maps
We should prefer using =
over :
in maps
Good
common_tags = {
Environment = "production"
}
Bad
common_tags = {
Environment : "production"
}
We should prefer using =
over :
in maps
common_tags = {
Environment = "production"
}
common_tags = {
Environment : "production"
}