启动CloudHSM的CF模板时出错

时间:2019-05-15 12:03:26

标签: amazon-web-services amazon-cloudformation amazon-cloudhsm

{
    "Resources": {
        "Cluster": {
            "Type" : "AWS::CloudHSM::Cluster",
            "Properties":{
            "VpcId": "vpc-50ae0636",
            "SubnetMapping": {
                "us-west-1b": "subnet-49a1bc00",
                "us-west-1c": "subnet-6f950334",
                "us-west-1a": "subnet-fd54af9b"
            },
            "SecurityGroup": "sg-6cb2c216",
            "HsmType": "hsm1.medium",
            "Certificates": {},
            "State": "CREATE_IN_PROGRESS",
            "Hsms": [],
            }
        }
    }
}

我正在尝试使用CF模板在CloudHSM中启动集群。我正面临这个问题。 “模板格式错误:无法识别的资源类型:[AWS :: HSM :: Cluster]”

3 个答案:

答案 0 :(得分:0)

CloudFormation当前不支持CloudHSM。
您可以找到受支持的服务和资源类型here的列表。

答案 1 :(得分:0)

AWS::CloudHSM::Cluster不是有效的资源类型。不幸的是,Cloudformation不支持所有服务,或者所支持的资源可能不完整。

以下是CloudFormation当前支持的有效服务和资源类型的列表:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html

Cloudformation团队非常频繁地推出对新资源的支持。您可以监视此页面以查看他们何时推出对新功能的支持: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/ReleaseHistory.html

答案 2 :(得分:0)