如何通过 terraform 编辑 aws-auth configmap?
我正在使用 Kuberbetes 提供程序和 Terraform EKS 模块创建 eks 集群。问题是我使用 Terraform Enterprise 工作区来创建它,因此我无法从 IAM 角色编辑 aws configmap。如何通过 terraform 编辑配置映射,以便将所需的角色和用户添加到生成的身份验证配置映射中?
I'm creating an eks cluster using the Kuberbetes provider and the Terraform EKS module. The problem is that I am using a Terraform Enterprise workspace to create it, so I can't edit the aws configmap from my IAM role. How do I edit the configmap through terraform so that it adds the desired roles and users to the generated was auth configmap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 eks 集群后应用身份验证。您可以按照以下步骤操作。
创建一个模板文件,其内容类似于变量文件中的值并传递值。 (我提供了一个非常高级别的示例,在下面声明资源/数据地形时,此处未分配一些值)
使用上面的模板文件创建数据
,然后渲染文件
创建具有触发器的 null_resource 并使用本地 exec 配置程序来应用身份验证文件
Apply auth after eks cluster creation. you can follow below steps.
Create a template file having content like and pass value in your variable file. (I am providing a just sample at very high level, some values are not assigned here while declaring resources/data terraform below )
Create data using above template file
then render file
create null_resource having trigger and use local exec provisioner to apply auth file