代码之家  ›  专栏  ›  技术社区  ›  nixmind

AWS CloudFormation创建堆栈与部署

  •  39
  • nixmind  · 技术社区  · 6 年前

    有人能清楚地向我解释一下 AWS CLI云信息 create-stack deploy 命令?对我来说,他们似乎在做同样的事情,部署资源。

    为什么从cli运行deploy命令时,create堆栈没有可执行的更改集,而文档说明:

    通过创建并执行更改集来部署指定的AWS CloudFormation模板。该命令在AWS CloudFormation执行更改集后终止。如果要在AWS CloudFormation执行更改集之前查看更改集,请使用--no execute changeset标志。

    3 回复  |  直到 6 年前
        1
  •  42
  •   chris    6 年前

    create-stack 只能在知道要创建新堆栈时使用。如果要更新堆栈,必须使用不同的命令等。如果要编写(ug)批处理文件来帮助运行cloudformation,这可能是一个真正的难题。

    这个 deploy 是更好地利用更改集的功能—无需知道是否存在堆栈,您只需运行deploy,工具就会知道它需要做什么。使用 --no-execute-changeset ,如果您决定要在应用更改之前查看更改,它实际上会为您提供所需的命令。

    看起来这是2016年11月推出的,大概是在变更集发布的时候。

        2
  •  16
  •   Kirk Broadhurst    6 年前

    我想 deploy 只是围绕 CreateChangeSet ,则, CreateStack UpdateStack api方法。

    请注意,尽管 deploy is in the CLI ,是的 not in the API reference

    我想 部署 除非需要明确审查变更集,否则优先考虑。不使用 部署 您可能需要 create-change-set 然后决定是创建还是更新堆栈。在这种情况下,deploy就像一个堆栈“upsert”。


    我不再懒惰,检查了代码,是的- 部署 最终是从CLI使用cloudformation的更好方法。实现是 here here 。请注意,到目前为止,还没有针对 部署 this issue

        3
  •  0
  •   Beta version of me    2 年前

    谨防以下奇怪行为: deploy 更改参数默认值时的命令( LatestAmi 就我而言)。

    $ cat ec2.yaml 
    AWSTemplateFormatVersion: "2010-09-09"
    
    Parameters:
      LatestAmi: 
        Type: AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>
        Default: /aws/service/canonical/ubuntu/server/20.04/stable/current/amd64/hvm/ebs-gp2/ami-id
        
    Resources:
      MyInstance:
        Type: AWS::EC2::Instance
        Properties:
          ImageId: !Ref LatestAmi
          InstanceType: t2.micro
          Tags:
            - Key: Name
              Value: cfn-deploy
    $ aws cloudformation deploy --template-file ec2.yaml --stack-name cfn-deploy
    
    Waiting for changeset to be created..
    Waiting for stack create/update to complete
    Successfully created/updated stack - cfn-deploy
    $ cat ec2.yaml 
    AWSTemplateFormatVersion: "2010-09-09"
    
    Parameters:
      LatestAmi: 
        Type: AWS::SSM::Parameter::Value<AWS::EC2::Image::Id>
        Default: /aws/service/ami-amazon-linux-latest/amzn2-ami-hvm-x86_64-gp2
    
    Resources:
      MyInstance:
        Type: AWS::EC2::Instance
        Properties:
          ImageId: !Ref LatestAmi
          InstanceType: t2.micro
          Tags:
            - Key: Name
              Value: cfn-deploy
    $ aws cloudformation deploy --template-file ec2.yaml --stack-name cfn-deploy
    
    Waiting for changeset to be created..
    
    No changes to deploy. Stack cfn-deploy is up to date
    $ aws --version
    aws-cli/2.5.2 Python/3.9.11 Linux/5.15.0-23-generic exe/x86_64.ubuntu.22 prompt/off
    

    如果您使用 update-stack 命令,实例将替换为请求的AMI。