Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Output a generated aws-auth configmap
A user of this module can subsequently use this ConfigMap output as they wish, in their own module. This should help with issue terraform-aws-modules#1280 ``` resource "kubernetes_config_map" "aws_auth" { metadata { name = module.eks.config_map_aws_auth_yaml.metadata.name namespace = module.eks.config_map_aws_auth_yaml.metadata.namespace labels = module.eks.config_map_aws_auth_yaml.metadata.labels } data = module.eks.config_map_aws_auth_yaml.data } ```
- Loading branch information