Skip to content

Instantly share code, notes, and snippets.

@karl-johan-grahn
Created February 23, 2022 19:55
Show Gist options
  • Save karl-johan-grahn/7afd2d090da3ce42655a2bb646dec94c to your computer and use it in GitHub Desktop.
Save karl-johan-grahn/7afd2d090da3ce42655a2bb646dec94c to your computer and use it in GitHub Desktop.
resource "kubernetes_config_map" "fqdn" {
metadata {
name = "configname"
namespace = "temp"
}
data = {
for k, v in module.namespace.sub_domain_fqdn : "sub_domain_fqdn_${k}" => v
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment