启动实例时,AWS CloudFormation是否可以创建供以后使用的KeyPair?


9

我想使用作为CloudFormation的一部分创建的密钥对来启动堆栈。

那可能吗?

....
"Resources": {
    "ReverseProxyKeyPair": {
        "Type": "AWS::EC2::KeyPair",
        "Properties": {
            "KeyName": "reverse_proxy"
        }
    },
....

是一个猜测,但没有奏效。我还没有找到CloudFormation的架构来说这是不可能的。

大多数示例都假定已经创建了一个KeyPair-我认为是因为在创建时只有一次下载它的机会。但我想动态创建一个,然后将其用作输出并转储到S3中(例如)。

或者,这是一个愚蠢的主意吗?

Answers:


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.