- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在解决我的 AWS 模板上的这些错误时遇到问题。
这是我的错误:
WobblelandSecurityGroup CREATE_FAILED 属性 GroupName 的值必须为字符串类型
PrivateSubnet CREATE_FAILED 资源 PrivateSubnet 的属性验证失败,消息为:#/AvailabilityZone:预期类型:字符串,找到:JSONArray
InternetGateway CREATE_FAILED 资源 InternetGateway 的属性验证失败,并显示消息:#:不允许使用无关 key [KeyName]
这是我的模板:
AWSTemplateFormatVersion: 2010-09-09
Description: "Wumbo Jumbo"
Parameters:
AvailabilityZone:
Type: "AWS::EC2::AvailabilityZone::Name"
EnvironmentName:
Description: "An environment name that is prefixed to resource names"
Type: String
KeyName:
Default: mongodb
Type: "AWS::EC2::KeyPair::KeyName"
PrivateSubnetCIDR:
Default: 10.0.2.0/24
Description: "Please enter the IP range (CIDR notation) for the private subnet in the first Availability Zone"
Type: String
PublicSubnetCIDR:
Default: 10.0.0.0/24
Description: "Please enter the IP range (CIDR notation) for the public subnet in the first Availability Zone"
Type: String
VpcCIDR:
Default: 10.0.0.0/16
Description: "Please enter the IP range (CIDR notation) for this VPC"
Type: String
Resources:
WobblelandEc2Instance:
Properties:
ImageId: ami-04505e74c0741db8d
InstanceType: t2.micro
KeyName: KeyName
SecurityGroupIds:
- WobblelandSecurityGroup
UserData:
Fn::Sub: |
#!/bin/bash
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
Type: "AWS::EC2::Instance"
WobblelandSecurityGroup:
Properties:
GroupDescription: "Allow HTTP/HTTPS and SSH inbound and outbound traffic"
GroupName:
- "-"
-
- Wobbleland-security-group
- dev
SecurityGroupIngress:
-
CidrIp: 0.0.0.0/0
FromPort: 80
IpProtocol: tcp
ToPort: 80
-
CidrIp: 0.0.0.0/0
FromPort: 443
IpProtocol: tcp
ToPort: 443
-
CidrIp: 0.0.0.0/0
FromPort: 22
IpProtocol: tcp
ToPort: 22
Type: "AWS::EC2::SecurityGroup"
DefaultPrivateRoute:
Properties:
DestinationCidrBlock: 0.0.0.0/0
NatGatewayId: NatGateway
RouteTableId: PrivateRouteTable
Type: "AWS::EC2::Route"
DefaultPublicRoute:
DependsOn: InternetGatewayAttachment
Properties:
DestinationCidrBlock: 0.0.0.0/0
InternetGatewayId: !GetAtt InternetGateway.InternetGatewayId
RouteTableId: PublicRouteTable
Type: "AWS::EC2::Route"
InternetGateway:
Properties:
KeyName: !Ref 'KeyName'
Tags:
-
Key: Name
Value: EnvironmentName
-
Key: Env
Value: EnvironmentName
Type: "AWS::EC2::InternetGateway"
InternetGatewayAttachment:
Properties:
InternetGatewayId: !GetAtt InternetGateway.InternetGatewayId
VpcId: VPC
Type: "AWS::EC2::VPCGatewayAttachment"
NatGateway:
Properties:
AllocationId: NatGatewayEIP.AllocationId
SubnetId: PublicSubnet
Type: "AWS::EC2::NatGateway"
NatGatewayEIP:
DependsOn: InternetGatewayAttachment
Properties:
Domain: vpc
Type: "AWS::EC2::EIP"
PrivateRouteTable:
Properties:
Tags:
-
Key: Name
Value: "${EnvironmentName} Private Routes (AZ1)"
-
Key: Env
Value: EnvironmentName
VpcId: VPC
Type: "AWS::EC2::RouteTable"
PrivateSubnet:
Properties:
AvailabilityZone:
- 0
CidrBlock: PrivateSubnetCIDR
MapPublicIpOnLaunch: false
Tags:
-
Key: Name
Value: "${EnvironmentName} Private Subnet (AZ1)"
-
Key: Env
Value: EnvironmentName
VpcId: VPC
Type: "AWS::EC2::Subnet"
PublicRouteTable:
Properties:
Tags:
-
Key: Name
Value: "${EnvironmentName} Public Routes"
-
Key: Env
Value: EnvironmentName
VpcId: VPC
Type: "AWS::EC2::RouteTable"
PublicSubnet:
Properties:
AvailabilityZone:
- 0
CidrBlock: PublicSubnetCIDR
MapPublicIpOnLaunch: true
Tags:
-
Key: Name
Value: "${EnvironmentName} Public Subnet (AZ1)"
-
Key: Env
Value: EnvironmentName
VpcId: VPC
Type: "AWS::EC2::Subnet"
VPC:
Properties:
CidrBlock: VpcCIDR
EnableDnsHostnames: true
EnableDnsSupport: true
Tags:
-
Key: Name
Value: EnvironmentName
-
Key: Env
Value: EnvironmentName
Type: "AWS::EC2::VPC"
最佳答案
您遇到了三个不同的错误。
对于第一个:
WobblelandSecurityGroup CREATE_FAILED Value of property GroupName must be of type String
这是因为 GroupName
属性的类型不正确;我想你想要:
GroupName: !Join
- "-"
- - Wobbleland-security-group
- dev
对于第二个:
PrivateSubnet CREATE_FAILED Properties validation failed for resource PrivateSubnet with message: #/AvailabilityZone: expected type: String, found: JSONArray
这是因为 AvailabilityZone
属性的类型不正确;我想你想要:
AvailabilityZone: !Select [ 0, !GetAZs ]
第三个:
InternetGateway CREATE_FAILED Properties validation failed for resource InternetGateway with message: #: extraneous key [KeyName] is not permitted
这是因为 KeyName
不是该资源的有效属性。您可以从文档中找到更多关于哪些 key 资源支持的信息;在这种情况下,this page .
关于amazon-web-services - AWS 上的 CloudFormation 模板错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71786158/
对于在 AWS 云中配置基础设施,我们目前使用从 ansible 角色调用的云形成模板,但我们发现在增加基础设施的规模后,此代码在 GitHub 中变得非结构化或未模块化 Github上有意大利面条式
我一直在阅读documentation for AWS Cloudwatch events至trigger AWS Batch我不知道如何从 cloudwatch 事件触发 aws 批处理: 在 aw
我正在尝试使用入口控制器安装我的CA证书。我正在遵循这份指南。Https://docs.aws.amazon.com/eks/latest/userguide/aws-load-balancer-co
如何使用 aws cloudformation 或 aws cdk 设置 aws aurora mysql 表? 在我的设置中,我有一个使用 lambda 实现各种微服务的无服务器应用程序。数据库是无
我看到了各种使用 AWS CDK 的示例,其中一些使用 aws-cdk-lib,另一些使用 @aws-cdk/core。这些之间有什么区别,什么时候应该使用一个或另一个? 最佳答案 aws-cdk-l
我看到了各种使用 AWS CDK 的示例,其中一些使用 aws-cdk-lib,另一些使用 @aws-cdk/core。这些之间有什么区别,什么时候应该使用一个或另一个? 最佳答案 aws-cdk-l
我在 cdk 研讨会上建立了一个小的 lambda 函数 here .我正在用 typescript 编写 lambda 函数,通过管道进行部署,该管道创建了一个包含 lambda 函数的云形成堆栈。
我刚刚开始使用 AWS 服务,尤其是 AWS Lambda。有没有办法从 Lambda 代码 (Java) 中使用 AWS KMS 服务。我想使用 KMS 来解密加密的外化(从属性读取) secret
CFN 模板是否可以根据参数向 ALB 添加一些特定的安全组? 我遇到了两个安全组添加到 ALB 的情况: ALB Type: AWS::ElasticLoadBalancingV2::LoadB
例如,我有一个主要公司 AWS 账户,其安全组为 xxxxx。现在我有了我的个人 aws 安全组-yyyyy。这些帐户根本不相关。我可以将接受组-yyyyy 添加到组-xxxxx 中,从而允许我的
我有一个 Lambda 函数,它有多个 MSK 触发器配置 - 每个都针对不同的主题。 如果 Lambda 的输入 ( MSKEvent ) 可以包含多个不同的主题,则未在官方文档中找到任何信息。 官
在 AWS Glue 中创建 JDBC 连接时,有什么方法可以从 AWS secret manager 获取密码而不是手动硬编码吗? 最佳答案 我必须在我当前的项目中这样做才能连接到 Cassandr
谁能告诉我: aws-sdk/clients/appsync , 和 aws-appsync 根据文档,aws-sdk/clients/appsync使用是因为只包括 aws-sdk当我们只需要 ap
我不小心删除了我的放大前端并创建了一个新前端。如何将现有的放大后端导入新创建的放大应用项目文件夹? 我按照后端标签上的步骤操作 amplify init --appId(“您的新AMPLIFY APP
我正在使用 Java Sdk 创建粘合作业。它只有两个必需的参数 Command 和 Glue 版本。 但我需要使用自动脚本生成来创建工作。正如我们可以从控制台做的那样,我们添加数据源、AWS Glu
目前我正在使用 AWS Glue 作业将数据加载到 RedShift,但在加载之后我需要运行一些可能使用 AWS Lambda 函数的数据清理任务。有没有办法在 Glue 作业结束时触发 Lambda
简单的 aws lambda 和 aws lambda@edge 有什么区别? 最佳答案 Lambda 根据某些触发器执行函数。 Lambda 的用例非常广泛,并且与许多 AWS 服务高度集成。您甚至
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 9 个月前。 社区 9
我正在尝试使用 Python 使用 AWS-CDK 创建托管广告。以下是错误,从 JavaScriptError(resp.stack) 引发 JSIIError(resp.error)jsii.er
这两个包似乎在很大程度上做同样的事情?这两个包之间的预期区别是什么,我应该使用哪个包? 最佳答案 Pipelines 是较新的 --experimental-- (编辑:它不再在 Experiment
我是一名优秀的程序员,十分优秀!