amazon.aws.cloudformation 模块 – 创建或删除 AWS CloudFormation 堆栈

注意

此模块是 amazon.aws 集合(版本 9.0.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install amazon.aws。您需要其他要求才能使用此模块,请参阅 要求 以了解详细信息。

要在 playbook 中使用它,请指定:amazon.aws.cloudformation

amazon.aws 1.0.0 中的新增功能

概要

  • 启动或更新 AWS CloudFormation 堆栈并等待其完成。

要求

执行此模块的主机需要以下要求。

  • python >= 3.6

  • boto3 >= 1.28.0

  • botocore >= 1.31.0

参数

参数

注释

access_key

别名:aws_access_key_id, aws_access_key, ec2_access_key

字符串

AWS 访问密钥 ID。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以使用 AWS_ACCESS_KEY_IDAWS_ACCESS_KEYEC2_ACCESS_KEY 环境变量,优先级递减。

aws_access_keyprofile 选项是互斥的。

为了与 AWS botocore SDK 保持一致,aws_access_key_id 别名已在 5.1.0 版本中添加。

ec2_access_key 别名已被弃用,将在 2024-12-01 之后的版本中删除。

EC2_ACCESS_KEY 环境变量的支持已被弃用,将在 2024-12-01 之后的版本中删除。

aws_ca_bundle

路径

验证 SSL 证书时使用的 CA 捆绑包的位置。

也可以使用 AWS_CA_BUNDLE 环境变量。

aws_config

字典

一个用于修改 botocore 配置的字典。

参数可以在 AWS 文档中找到 https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html#botocore.config.Config

backoff_delay

整数

等待下一次重试的秒数。

默认值: 3

backoff_max_delay

整数

重试之间等待的最大时间量。

默认值: 30

backoff_retries

整数

重试操作的次数。

AWS API 节流机制导致 CloudFormation 模块失败,因此我们必须重试几次。

默认值: 10

capabilities

列表 / 元素=字符串

指定堆栈模板包含的功能。

有效值为 CAPABILITY_IAMCAPABILITY_NAMED_IAMCAPABILITY_AUTO_EXPAND

默认值: ["CAPABILITY_IAM", "CAPABILITY_NAMED_IAM"]

changeset_name

字符串

创建变更集时给定的变更集名称。

仅当 create_changeset=true 时使用。

默认情况下,将根据输入参数生成一个以 Ansible-STACKNAME 为前缀的名称。有关详细信息,请参阅 AWS 变更集文档 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html

create_changeset

布尔值

如果堆栈已存在,则创建变更集而不是直接应用更改。请参阅 AWS 变更集文档 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-changesets.html

警告: 如果堆栈不存在,则将在不使用变更集的情况下创建它。如果 state=absent,堆栈将立即被删除,而不使用变更集。

选择

  • false ←(默认)

  • true

create_timeout

整数

堆栈状态变为 CREATE_FAILED 之前可能经过的时间(以分钟为单位)。

debug_botocore_endpoint_logs

布尔值

使用 botocore.endpoint 日志记录器来解析任务期间进行的唯一 (而非总计) "resource:action" API 调用,并将该集合输出到任务结果中的 resource_actions 键。使用 aws_resource_action 回调将剧本执行期间的总列表输出。

也可以使用 ANSIBLE_DEBUG_BOTOCORE_LOGS 环境变量。

选择

  • false ←(默认)

  • true

disable_rollback

布尔值

如果堆栈创建失败,回滚将移除该堆栈。

选择

  • false ←(默认)

  • true

endpoint_url

别名: ec2_url, aws_endpoint_url, s3_url

字符串

连接时使用的 URL,而不是默认的 AWS 端点。虽然这可以用于连接到其他 AWS 兼容服务,但 amazon.aws 和 community.aws 集合仅针对 AWS 进行了测试。

也可以使用 AWS_URLEC2_URL 环境变量,优先级依次降低。

ec2_urls3_url 别名已弃用,将在 2024-12-01 之后的版本中移除。

EC2_URL 环境变量的支持已弃用,将在 2024-12-01 之后的版本中移除。

events_limit

整数

在创建或更新堆栈时,从堆栈中获取的最大 CloudFormation 事件数。

默认值: 200

notification_arns

字符串

以逗号分隔的简单通知服务 (SNS) 主题 ARN 列表,用于发布与堆栈相关的事件。

on_create_failure

字符串

堆栈创建失败时要采取的操作。与 disable_rollback 选项不兼容。

选择

  • "DO_NOTHING"

  • "ROLLBACK"

  • "DELETE"

profile

别名: aws_profile

字符串

用于身份验证的已命名的 AWS 配置文件。

有关已命名配置文件的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html

也可以使用 AWS_PROFILE 环境变量。

profile 选项与 aws_access_keyaws_secret_keysecurity_token 选项互斥。

region

别名: aws_region, ec2_region

字符串

要使用的 AWS 区域。

对于 IAM、Route53 和 CloudFront 等全局服务,将忽略 region

也可以使用 AWS_REGIONEC2_REGION 环境变量。

有关更多信息,请参阅 Amazon AWS 文档 http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region

ec2_region 别名已弃用,将在 2024-12-01 之后的版本中移除

EC2_REGION 环境变量的支持已弃用,将在 2024-12-01 之后的版本中移除。

role_arn

字符串

AWS CloudFormation 用于创建堆栈的角色。请参阅 AWS CloudFormation 服务角色文档 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-servicerole.html

secret_key

别名: aws_secret_access_key, aws_secret_key, ec2_secret_key

字符串

AWS secret access key。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以使用 AWS_SECRET_ACCESS_KEYAWS_SECRET_KEYEC2_SECRET_KEY 环境变量,优先级依次降低。

secret_keyprofile 选项互斥。

为了与 AWS botocore SDK 保持一致,aws_secret_access_key 别名在 5.1.0 版本中添加。

ec2_secret_key 别名已弃用,将在 2024-12-01 之后的版本中移除。

EC2_SECRET_KEY 环境变量的支持已弃用,将在 2024-12-01 之后的版本中移除。

session_token

别名: aws_session_token, security_token, aws_security_token, access_token

字符串

用于临时凭证的 AWS STS 会话令牌。

有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys

也可以使用 AWS_SESSION_TOKENAWS_SECURITY_TOKENEC2_SECURITY_TOKEN 环境变量,优先级依次降低。

security_tokenprofile 选项互斥。

别名 aws_session_tokensession_token 在 3.2.0 版本中添加,参数在 6.0.0 版本中从 security_token 重命名为 session_token

security_tokenaws_security_tokenaccess_token 别名已弃用,将在 2024-12-01 之后的版本中移除。

EC2_SECRET_KEYAWS_SECURITY_TOKEN 环境变量的支持已弃用,将在 2024-12-01 之后的版本中移除。

stack_name

string / 必填

CloudFormation 堆栈的名称。

stack_policy

字符串

包含 CloudFormation 堆栈策略的文件的路径。策略一旦设置就无法删除,但可以修改。例如,允许所有更新 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html#d0e9051

stack_policy_body

json

在 amazon.aws 1.5.0 中添加

JSON 格式的 CloudFormation 堆栈策略。策略一旦设置就无法删除,但可以修改。例如,允许所有更新 https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/protect-stack-resources.html#d0e9051

stack_policy_on_update_body

json

在 amazon.aws 1.5.0 中添加

仅在此更新期间应用的 cloudformation 堆栈策略的主体。

state

字符串

如果 state=present,则将创建堆栈。

如果 state=present,并且如果堆栈存在且模板已更改,则将更新它。

如果 state=absent,则将移除堆栈。

选择

  • "present" ← (默认)

  • "absent"

tags

字典

要在堆栈创建期间与堆栈及其资源关联的标签字典。

稍后可以更新,更新标签会删除以前的条目。

template

路径

CloudFormation 模板的本地路径。

这必须是文件的完整路径,相对于工作目录。如果使用角色,则可能类似于 roles/cloudformation/files/cloudformation-example.json

如果 state=present 且堆栈尚不存在,则必须指定 templatetemplate_bodytemplate_url 中的一个(但只能指定其中一个)。

如果 state=present,堆栈确实存在,并且未指定 templatetemplate_bodytemplate_url 中的任何一个,则将重用以前的模板。

template 参数已弃用,将在 2026-05-01 之后的版本中移除。建议将 template_bodyansible.builtin.template 查找插件一起使用。

template_body

字符串

模板主体。使用此选项传入 CloudFormation 模板的实际主体。

如果 state=present 且堆栈尚不存在,则必须指定 templatetemplate_bodytemplate_url 中的一个(但只能指定其中一个)。

如果 state=present,堆栈确实存在,并且未指定 templatetemplate_bodytemplate_url 中的任何一个,则将重用以前的模板。

template_parameters

字典

堆栈的所有模板变量的哈希列表。该值可以是字符串或字典。

字典可用于设置其他模板参数属性,例如 UsePreviousValue (请参见示例)。

默认值: {}

template_url

字符串

包含模板主体的文件的位置。该 URL 必须指向与堆栈位于同一区域的 S3 存储桶中的模板(最大大小为 307,200 字节)。

如果 state=present 且堆栈尚不存在,则必须指定 templatetemplate_bodytemplate_url 中的一个(但只能指定其中一个)。

如果 state=present,堆栈确实存在,并且未指定 templatetemplate_bodytemplate_url 中的任何一个,则将重用以前的模板。

termination_protection

布尔值

启用或禁用堆栈上的终止保护。

选择

  • false

  • true

validate_certs

布尔值

设置为 false 时,将不会验证与 AWS API 通信的 SSL 证书。

强烈建议不要设置 validate_certs=false,作为替代方法,请考虑设置 aws_ca_bundle

选择

  • false

  • true ← (默认)

注释

注意

  • 注意: 对于模块,环境变量和配置文件是从 Ansible“主机”上下文而不是“控制器”上下文中读取的。因此,可能需要将文件显式复制到“主机”。对于查找和连接插件,环境变量和配置文件是从 Ansible“控制器”上下文而不是“主机”上下文中读取的。

  • Ansible 使用的 AWS SDK (boto3) 也可能从 Ansible “主机” 上下文(通常是 ~/.aws/credentials)的配置文件中读取凭据和其他设置(例如区域)的默认值。有关更多信息,请参阅 https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html

示例

- name: create a cloudformation stack
  amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation"
    state: "present"
    region: "us-east-1"
    disable_rollback: true
    # The template parameter has been deprecated, use template_body with lookup instead.
    # template: "files/cloudformation-example.json"
    template_body: "{{ lookup('file', 'cloudformation-example.json') }}"
    template_parameters:
      KeyName: "jmartin"
      DiskType: "ephemeral"
      InstanceType: "m1.small"
      ClusterSize: 3
    tags:
      Stack: "ansible-cloudformation"

# Basic role example
- name: create a stack, specify role that cloudformation assumes
  amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation"
    state: "present"
    region: "us-east-1"
    disable_rollback: true
    # The template parameter has been deprecated, use template_body with lookup instead.
    # template: "roles/cloudformation/files/cloudformation-example.json"
    template_body: "{{ lookup('file', 'cloudformation-example.json') }}"
    role_arn: 'arn:aws:iam::123456789012:role/cloudformation-iam-role'

- name: delete a stack
  amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation-old"
    state: "absent"

# Create a stack, pass in template from a URL, disable rollback if stack creation fails,
# pass in some parameters to the template, provide tags for resources created
- name: create a stack, pass in the template via an URL
  amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation"
    state: present
    region: us-east-1
    disable_rollback: true
    template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
    template_parameters:
      KeyName: jmartin
      DiskType: ephemeral
      InstanceType: m1.small
      ClusterSize: 3
    tags:
      Stack: ansible-cloudformation

# Create a stack, passing in template body using lookup of Jinja2 template, disable rollback if stack creation fails,
# pass in some parameters to the template, provide tags for resources created
- name: create a stack, pass in the template body via lookup template
  amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation"
    state: present
    region: us-east-1
    disable_rollback: true
    template_body: "{{ lookup('template', 'cloudformation.j2') }}"
    template_parameters:
      KeyName: jmartin
      DiskType: ephemeral
      InstanceType: m1.small
      ClusterSize: 3
    tags:
      Stack: ansible-cloudformation

# Pass a template parameter which uses CloudFormation's UsePreviousValue attribute
# When use_previous_value is set to True, the given value will be ignored and
# CloudFormation will use the value from a previously submitted template.
# If use_previous_value is set to False (default) the given value is used.
- amazon.aws.cloudformation:
    stack_name: "ansible-cloudformation"
    state: "present"
    region: "us-east-1"
    template: "files/cloudformation-example.json"
    template_parameters:
      DBSnapshotIdentifier:
        use_previous_value: true
        value: arn:aws:rds:es-east-1:123456789012:snapshot:rds:my-db-snapshot
      DBName:
        use_previous_value: true
    tags:
      Stack: "ansible-cloudformation"

# Enable termination protection on a stack.
# If the stack already exists, this will update its termination protection
- name: enable termination protection during stack creation
  amazon.aws.cloudformation:
    stack_name: my_stack
    state: present
    template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
    termination_protection: true

# Configure TimeoutInMinutes before the stack status becomes CREATE_FAILED
# In this case, if disable_rollback is not set or is set to false, the stack will be rolled back.
- name: enable termination protection during stack creation
  amazon.aws.cloudformation:
    stack_name: my_stack
    state: present
    template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
    create_timeout: 5

# Configure rollback behaviour on the unsuccessful creation of a stack allowing
# CloudFormation to clean up, or do nothing in the event of an unsuccessful
# deployment
# In this case, if on_create_failure is set to "DELETE", it will clean up the stack if
# it fails to create
- name: create stack which will delete on creation failure
  amazon.aws.cloudformation:
    stack_name: my_stack
    state: present
    template_url: https://s3.amazonaws.com/my-bucket/cloudformation.template
    on_create_failure: DELETE

返回值

通用返回值已在此处记录:这里,以下是此模块特有的字段

描述

change_set_id

字符串

创建时堆栈更改集的 ID。

返回:state=presentcreate_changeset=true 时。

示例: "arn:aws:cloudformation:us-east-1:123456789012:changeSet/Ansible-StackName-f4496805bd1b2be824d1e315c6884247ede41eb0"

events

列表 / 元素=字符串

CloudFormation 事件日志中的最新事件。在某些情况下,这可能来自之前的运行。

返回: 始终

示例: ["StackEvent AWS::CloudFormation::Stack stackname UPDATE_COMPLETE", "StackEvent AWS::CloudFormation::Stack stackname UPDATE_COMPLETE_CLEANUP_IN_PROGRESS"]

log

列表 / 元素=字符串

调试日志。在修改或查找错误时很有用。

返回: 始终

示例: ["updating stack"]

stack_outputs

字典

当前定义的所有堆栈输出的键值字典。如果没有堆栈输出,则为空字典。

返回:state=present

示例: {"MySg": "AnsibleModuleTestYAML-CFTestSg-C8UVS567B6NS"}

stack_resources

列表 / 元素=字典

AWS 堆栈资源及其状态。字典列表,每个资源一个字典。

返回:state=present

示例: [{"last_updated_time": "2016-10-11T19:40:14.979000+00:00", "logical_resource_id": "CFTestSg", "physical_resource_id": "cloudformation2-CFTestSg-16UQ4CYQ57O9F", "resource_type": "AWS::EC2::SecurityGroup", "status": "UPDATE_COMPLETE", "status_reason": null}]

作者

  • James S. Martin (@jsmartin)