2

即使我指定了自定义 VPC,我的用于自动缩放组的 Cloudformation YAML 也会继续在默认 VPC 中创建 EC2 实例。这是代码片段:

  TargetGroup:
    Type: AWS::ElasticLoadBalancingV2::TargetGroup
    Properties:
      Port: 80
      Protocol: HTTP
      VpcId: !Ref VpcId

参数部分:

  VpcId:
    Description: Enter the VpcId
    Type: AWS::EC2::VPC::Id
    Default: vpc-0ed238eeecc11b493

我一直看到 EC2 实例终止,因为启动配置出于某种原因在默认 VPC 中创建实例,即使我已指定使用参数部分中的自定义。我不知道为什么它不采用自定义 VPC。当我检查安全组时,在 AWS 控制台中启动配置它会显示自定义 VPC,但是当我检查由 Auto Scaling 组启动的 EC2 实例时,我会看到默认 VPC。我的默认 VPC 是vpc-6a79470d,我的自定义 VPC 是vpc-0ed238eeecc11b493

我在控制台的自动缩放组部分看到的错误是:

Description:DescriptionLaunching a new EC2 instance: i-041b680f6470379e3. 
Status Reason: Failed to update target group arn:aws:elasticloadbalancing:us-west-1:targetgroup/ALBTe-Targe-7DMLWW46T1E6/f74a31d17bf3c4dc: 
The following targets are not in the target group VPC 'vpc-0ed238eeecc11b493': 'i-041b680f6470379e3' Updating load balancer configuration failed.

希望有人可以帮助指出我做错了什么。我在 AWS 文档中看到默认情况下 ASG 在默认 VPC 中启动,但如果可以通过控制台执行此操作,则必须有一种方法可以在 CloudFormation 中执行此操作。

================================更新后================= =========

这是添加 VPCZoneIdentifier 后现在的样子,不确定我做错了什么并且现在遇到安全组问题

  AutoScalingGroup:
    Type: AWS::AutoScaling::AutoScalingGroup
    Properties:
      AvailabilityZones: !GetAZs
      VPCZoneIdentifier: !Ref SubnetIds
      LaunchConfigurationName: !Ref LaunchConfiguration
      MinSize: 1
      MaxSize: 3
      TargetGroupARNs: 
        - !Ref TargetGroup
  LaunchConfiguration:
    Type: AWS::AutoScaling::LaunchConfiguration
    Properties:
      KeyName: !Ref KeyName
      InstanceType: t2.micro
      SecurityGroups:
        - !Ref EC2SecurityGroup
      ImageId:
        Fn::FindInMap:
        - RegionMap
        - !Ref AWS::Region
        - AMI
      LaunchConfiguration --region ${AWS::Region}
  ALBSecurityGroup:
    Type: AWS::EC2::SecurityGroup
    Properties:
      GroupDescription: ALB Security Group
      VpcId: VpcId: !Ref VpcId
      SecurityGroupIngress:
        - IpProtocol: tcp
          FromPort: 80
          ToPort: 80
          CidrIp: 0.0.0.0/0
  EC2SecurityGroup: 
    Type: AWS::EC2::SecurityGroup
    Properties:
      GroupDescription: EC2 Instance
4

2 回答 2

2

在您的 ASG 中,您通常会定义VPCZoneIdentifier

  • Virtual Private Cloud (VPC)的子网 ID 列表。如果您使用 AvailabilityZones 指定 VPCZoneIdentifier,则您为此属性指定的子网必须位于这些可用区中。

示例如下:


Parameters:

  SubnetIds:
    Type: List<AWS::EC2::Subnet::Id>
    Description: Subnet IDs for ASG

Resources:

  MyASG:
    Type: AWS::AutoScaling::AutoScalingGroup
    Properties: 
      # ... other properties
      VPCZoneIdentifier: !Ref SubnetIds
于 2020-06-22T09:14:56.673 回答
2

您提供的代码段适用于负载均衡器的目标组。

出现此错误的原因是附加到您的 Auto Scaling 组的子网与您的目标组不在同一个 VPC 内。

使用参数类型List<AWS::EC2::Subnet::Id>为您的自动缩放组指定子网。

对于您的自动缩放组,VPCZoneIdentifier应为参数分配参数值。

此处提供了有关此参数类型的更多信息。

于 2020-06-22T09:12:45.203 回答