用于向 IAM 用户添加 SSH 密钥的 CDK 或 CloudFormation 资源?
CDK or CloudFormation resource for adding SSH key to IAM user?
我无法在文档中找到如何在 AWS CDK 中指定 IAM 用户的 public SSH 密钥,而且似乎也找不到相应的 CloudFormation 类型。 Terraform 具有以下内容:
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user_ssh_key
如何在 CloudFormation 或 CDK 中指定密钥?
不支持。您必须为此开发自己的 custom resource。
我无法在文档中找到如何在 AWS CDK 中指定 IAM 用户的 public SSH 密钥,而且似乎也找不到相应的 CloudFormation 类型。 Terraform 具有以下内容:
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_user_ssh_key
如何在 CloudFormation 或 CDK 中指定密钥?
不支持。您必须为此开发自己的 custom resource。