community.aws.api_gateway_domain 模块 – 管理 AWS API Gateway 自定义域名
注意
此模块是 community.aws 集合 (版本 9.0.0) 的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.aws
。您需要进一步的要求才能使用此模块,有关详细信息,请参阅要求。
要在 playbook 中使用它,请指定:community.aws.api_gateway_domain
。
community.aws 3.3.0 中的新增功能
概要
管理 API GW Rest API 的 API Gateway 自定义域名。
AWS API Gateway 自定义域名设置在幕后使用 CloudFront。因此,您将获得一个 CloudFront 分发,该分发配置为使用您的域名进行别名。
在 5.0.0 版本之前,此模块称为
community.aws.aws_api_gateway_domain
。用法没有改变。
别名:aws_api_gateway_domain
要求
执行此模块的主机需要满足以下要求。
python >= 3.6
boto3 >= 1.28.0
botocore >= 1.31.0
参数
参数 |
注释 |
---|---|
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 和 profile 选项是互斥的。 为了与 AWS botocore SDK 保持一致,在 5.1.0 版本中添加了 aws_access_key_id 别名。 ec2_access_key 别名已弃用,将在 2024-12-01 之后的版本中删除。 对 |
|
验证 SSL 证书时要使用的 CA 捆绑包的位置。 也可以使用 |
|
用于修改 botocore 配置的字典。 可以在 AWS 文档中找到参数 https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html#botocore.config.Config。 |
|
AWS Certificate Manger (ACM) TLS 证书 ARN。 |
|
使用 也可以使用 选项
|
|
将您的域名基本路径映射到您先前创建的 API GW REST API。使用提供的 API 设置 ID 和发布阶段。 domain_mappings 应该是一个包含三个键的字典列表:base_path、rest_api_id 和 stage。 示例:[{ base_path: v1, rest_api_id: abc123, stage: production }] 如果要将基本路径设置为 /,请完全省略该参数或将其设置为空字符串。 |
|
您要用于 API GW 部署的域名。 |
|
域的 API 端点配置。对于边缘优化的端点,请使用 EDGE,或使用 选项
|
|
连接到的 URL,而不是默认的 AWS 端点。虽然这可以用于连接到其他与 AWS 兼容的服务,但仅针对 AWS 测试了 amazon.aws 和 community.aws 集合。 也可以使用 ec2_url 和 s3_url 别名已弃用,将在 2024-12-01 之后的版本中移除。 对 |
|
用于身份验证的已命名 AWS 配置文件。 有关命名配置文件的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html。 也可以使用 profile 选项与 aws_access_key、aws_secret_key 和 security_token 选项互斥。 |
|
要使用的 AWS 区域。 对于 IAM、Route53 和 CloudFront 等全局服务,region 将被忽略。 也可以使用 有关更多信息,请参阅 Amazon AWS 文档 http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region。 ec2_region 别名已弃用,将在 2024-12-01 之后的版本中移除 对 |
|
AWS 秘密访问密钥。 有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys。 也可以按优先级递减的顺序使用 secret_key 和 profile 选项互斥。 aws_secret_access_key 别名在 5.1.0 版本中添加,以与 AWS botocore SDK 保持一致。 ec2_secret_key 别名已弃用,将在 2024-12-01 之后的版本中移除。 对 |
|
通过 AWS 定义的策略设置允许的 TLS 版本。目前仅提供 选项
|
|
用于临时凭证的 AWS STS 会话令牌。 有关访问令牌的更多信息,请参阅 AWS 文档 https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys。 也可以按优先级递减的顺序使用 security_token 和 profile 选项互斥。 别名 aws_session_token 和 session_token 在 3.2.0 版本中添加,参数在 6.0.0 版本中从 security_token 重命名为 session_token。 security_token、aws_security_token 和 access_token 别名已弃用,将在 2024-12-01 之后的版本中移除。 对 |
|
创建或删除自定义域设置。 选项
|
|
设置为 强烈建议不要设置 validate_certs=false,作为替代方案,请考虑设置 aws_ca_bundle。 选项
|
备注
注意
不会在 Route53 上创建 DNS 条目,为此请使用 community.aws.route53 模块。
仅支持来自 AWS ACM 的 TLS 证书,这些证书只能通过 ARN 引用,而 AWS API 仍然提供(已弃用)添加自有证书的选项。
注意:对于模块,环境变量和配置文件是从 Ansible 'host' 上下文而不是 'controller' 上下文读取的。因此,可能需要将文件显式复制到 'host'。 对于查找和连接插件,环境变量和配置文件是从 Ansible 'controller' 上下文而不是 'host' 上下文读取的。
Ansible 使用的 AWS SDK (boto3) 也可能会从 Ansible 'host' 上下文(通常是
~/.aws/credentials
)中的配置文件读取凭证和其他设置(例如区域)的默认值。 有关更多信息,请参阅 https://boto3.amazonaws.com/v1/documentation/api/latest/guide/credentials.html。
示例
- name: Setup endpoint for a custom domain for your API Gateway HTTP API
community.aws.api_gateway_domain:
domain_name: myapi.foobar.com
certificate_arn: 'arn:aws:acm:us-east-1:1231123123:certificate/8bd89412-abc123-xxxxx'
security_policy: TLS_1_2
endpoint_type: EDGE
domain_mappings:
- rest_api_id: abc123
stage: production
state: present
register: api_gw_domain_result
- name: Create a DNS record for your custom domain on route 53 (using route53 module)
community.aws.route53:
record: myapi.foobar.com
value: "{{ api_gw_domain_result.response.domain.distribution_domain_name }}"
type: A
alias: true
zone: foobar.com
alias_hosted_zone_id: "{{ api_gw_domain_result.response.domain.distribution_hosted_zone_id }}"
command: create
返回值
常见的返回值记录在此处,以下是此模块独有的字段
键 |
描述 |
---|---|
由 boto3 的 create_domain_name(或 update 和 delete)和 create_base_path_mapping 方法返回的数据。 返回: 成功 示例: |