Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix access_key, token missing issue #2089

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dlscjf151
Copy link

SUMMARY

fix #2088

ISSUE TYPE
  • Bugfix Pull Request
COMPONENT NAME

ansible_collections.community.aws.plugins.connection.aws_ssm.Connection._get_boto_client

ADDITIONAL INFORMATION

If you set the access_key first and then set the profile, the acces_key and token will be overwritten by the profile value instead of being applied. Therefore, only set the acces_key and token if you are not using the profile.

aws_access_key_id = self.get_option("access_key_id")
        aws_secret_access_key = self.get_option("secret_access_key")
        aws_session_token = self.get_option("session_token")

        session_args = dict(
            aws_access_key_id=aws_access_key_id,
            aws_secret_access_key=aws_secret_access_key,
            aws_session_token=aws_session_token,
            region_name=region_name,
        )
        if profile_name:
            session_args["profile_name"] = profile_name
        session = boto3.session.Session(**session_args)
============================================
aws_access_key_id = self.get_option("access_key_id")
        aws_secret_access_key = self.get_option("secret_access_key")
        aws_session_token = self.get_option("session_token")

        session_args = dict(
            region_name=region_name,
        )
        if profile_name:
            session_args["profile_name"] = profile_name
        else:
            session_args["aws_access_key_id"]=aws_access_key_id,
            session_args["aws_secret_access_key"]=aws_secret_access_key,
            session_args["aws_session_token"]=aws_session_token,

Copy link
Contributor

Build failed.
https://ansible.softwarefactory-project.io/zuul/buildset/a825498a5b8c441a88f9b27c572b1d2e

✔️ ansible-galaxy-importer SUCCESS in 4m 42s (non-voting)
✔️ build-ansible-collection SUCCESS in 16m 59s
✔️ ansible-test-splitter SUCCESS in 8m 39s
integration-community.aws-1 FAILURE in 12m 44s
integration-community.aws-2 FAILURE in 13m 01s
integration-community.aws-3 FAILURE in 16m 54s
integration-community.aws-4 FAILURE in 13m 17s
integration-community.aws-5 FAILURE in 12m 18s
integration-community.aws-6 FAILURE in 11m 55s
✔️ integration-community.aws-7 SUCCESS in 9m 55s
integration-community.aws-8 FAILURE in 11m 50s
integration-community.aws-9 FAILURE in 12m 32s
integration-community.aws-10 FAILURE in 7m 01s
✔️ integration-community.aws-11 SUCCESS in 6m 46s
Skipped 11 jobs

@markuman
Copy link
Member

recheck

@markuman
Copy link
Member

@dlscjf151 Thanks for your contribution. Can you also add a changelog fragment please?

@markuman markuman added backport-7 PR should be backported to the stable-7 branch backport-8 labels Jun 13, 2024
Copy link
Contributor

Build failed.
https://ansible.softwarefactory-project.io/zuul/buildset/efb02608b7cc4ee59cf15c9b0163e532

ansible-galaxy-importer FAILURE in 3m 52s (non-voting)
✔️ build-ansible-collection SUCCESS in 12m 55s
✔️ ansible-test-splitter SUCCESS in 5m 10s
integration-community.aws-1 FAILURE in 13m 16s
integration-community.aws-2 FAILURE in 10m 47s
integration-community.aws-3 FAILURE in 13m 07s
integration-community.aws-4 FAILURE in 13m 40s
integration-community.aws-5 FAILURE in 16m 15s
integration-community.aws-6 FAILURE in 15m 36s
✔️ integration-community.aws-7 SUCCESS in 11m 43s
integration-community.aws-8 FAILURE in 16m 04s
integration-community.aws-9 FAILURE in 16m 02s
integration-community.aws-10 FAILURE in 11m 52s
✔️ integration-community.aws-11 SUCCESS in 7m 31s
Skipped 11 jobs

Copy link

Docs Build 📝

Thank you for contribution!✨

The docsite for this PR is available for download as an artifact from this run:
https://github.com/ansible-collections/community.aws/actions/runs/9566146849

You can compare to the docs for the main branch here:
https://ansible-collections.github.io/community.aws/branch/main

File changes:

  • M collections/community/aws/accessanalyzer_validate_policy_info_module.html
  • M collections/community/aws/acm_certificate_info_module.html
  • M collections/community/aws/acm_certificate_module.html
  • M collections/community/aws/api_gateway_domain_module.html
  • M collections/community/aws/api_gateway_info_module.html
  • M collections/community/aws/api_gateway_module.html
  • M collections/community/aws/application_autoscaling_policy_module.html
  • M collections/community/aws/autoscaling_complete_lifecycle_action_module.html
  • M collections/community/aws/autoscaling_group_info_module.html
  • M collections/community/aws/autoscaling_group_module.html
  • M collections/community/aws/autoscaling_instance_refresh_info_module.html
  • M collections/community/aws/autoscaling_instance_refresh_module.html
  • M collections/community/aws/autoscaling_launch_config_find_module.html
  • M collections/community/aws/autoscaling_launch_config_info_module.html
  • M collections/community/aws/autoscaling_launch_config_module.html
  • M collections/community/aws/autoscaling_lifecycle_hook_module.html
  • M collections/community/aws/autoscaling_policy_module.html
  • M collections/community/aws/autoscaling_scheduled_action_module.html
  • M collections/community/aws/aws_acm_info_module.html
  • M collections/community/aws/aws_acm_module.html
  • M collections/community/aws/aws_api_gateway_domain_module.html
  • M collections/community/aws/aws_api_gateway_module.html
  • M collections/community/aws/aws_application_scaling_policy_module.html
  • M collections/community/aws/aws_batch_compute_environment_module.html
  • M collections/community/aws/aws_batch_job_definition_module.html
  • M collections/community/aws/aws_batch_job_queue_module.html
  • M collections/community/aws/aws_codebuild_module.html
  • M collections/community/aws/aws_codecommit_module.html
  • M collections/community/aws/aws_codepipeline_module.html
  • M collections/community/aws/aws_config_aggregation_authorization_module.html
  • M collections/community/aws/aws_config_aggregator_module.html
  • M collections/community/aws/aws_config_delivery_channel_module.html
  • M collections/community/aws/aws_config_recorder_module.html
  • M collections/community/aws/aws_config_rule_module.html
  • M collections/community/aws/aws_direct_connect_confirm_connection_module.html
  • M collections/community/aws/aws_direct_connect_connection_module.html
  • M collections/community/aws/aws_direct_connect_gateway_module.html
  • M collections/community/aws/aws_direct_connect_link_aggregation_group_module.html
  • M collections/community/aws/aws_direct_connect_virtual_interface_module.html
  • M collections/community/aws/aws_eks_cluster_module.html
  • M collections/community/aws/aws_elasticbeanstalk_app_module.html
  • M collections/community/aws/aws_glue_connection_module.html
  • M collections/community/aws/aws_glue_crawler_module.html
  • M collections/community/aws/aws_glue_job_module.html
  • M collections/community/aws/aws_inspector_target_module.html
  • M collections/community/aws/aws_kms_info_module.html
  • M collections/community/aws/aws_kms_module.html
  • M collections/community/aws/aws_mq_inventory.html
  • M collections/community/aws/aws_msk_cluster_module.html
  • M collections/community/aws/aws_msk_config_module.html
  • M collections/community/aws/aws_region_info_module.html
  • M collections/community/aws/aws_s3_bucket_info_module.html
  • M collections/community/aws/aws_s3_cors_module.html
  • M collections/community/aws/aws_secret_module.html
  • M collections/community/aws/aws_ses_identity_module.html
  • M collections/community/aws/aws_ses_identity_policy_module.html
  • M collections/community/aws/aws_ses_rule_set_module.html
  • M collections/community/aws/aws_sgw_info_module.html
  • M collections/community/aws/aws_ssm_connection.html
  • M collections/community/aws/aws_ssm_parameter_store_module.html
  • M collections/community/aws/aws_step_functions_state_machine_execution_module.html
  • M collections/community/aws/aws_step_functions_state_machine_module.html
  • M collections/community/aws/aws_waf_condition_module.html
  • M collections/community/aws/aws_waf_info_module.html
  • M collections/community/aws/aws_waf_rule_module.html
  • M collections/community/aws/aws_waf_web_acl_module.html
  • M collections/community/aws/batch_compute_environment_module.html
  • M collections/community/aws/batch_job_definition_module.html
  • M collections/community/aws/batch_job_queue_module.html
  • M collections/community/aws/cloudformation_exports_info_module.html
  • M collections/community/aws/cloudformation_stack_set_module.html
  • M collections/community/aws/cloudfront_distribution_info_module.html
  • M collections/community/aws/cloudfront_distribution_module.html
  • M collections/community/aws/cloudfront_info_module.html
  • M collections/community/aws/cloudfront_invalidation_module.html
  • M collections/community/aws/cloudfront_origin_access_identity_module.html
  • M collections/community/aws/cloudfront_response_headers_policy_module.html
  • M collections/community/aws/cloudtrail_module.html
  • M collections/community/aws/cloudwatch_metric_alarm_module.html
  • M collections/community/aws/cloudwatchevent_rule_module.html
  • M collections/community/aws/cloudwatchlogs_log_group_info_module.html
  • M collections/community/aws/cloudwatchlogs_log_group_metric_filter_module.html
  • M collections/community/aws/cloudwatchlogs_log_group_module.html
  • M collections/community/aws/codebuild_project_module.html
  • M collections/community/aws/codecommit_repository_module.html
  • M collections/community/aws/codepipeline_module.html
  • M collections/community/aws/config_aggregation_authorization_module.html
  • M collections/community/aws/config_aggregator_module.html
  • M collections/community/aws/config_delivery_channel_module.html
  • M collections/community/aws/config_recorder_module.html
  • M collections/community/aws/config_rule_module.html
  • M collections/community/aws/data_pipeline_module.html
  • M collections/community/aws/directconnect_confirm_connection_module.html
  • M collections/community/aws/directconnect_connection_module.html
  • M collections/community/aws/directconnect_gateway_module.html
  • M collections/community/aws/directconnect_link_aggregation_group_module.html
  • M collections/community/aws/directconnect_virtual_interface_module.html
  • M collections/community/aws/dms_endpoint_module.html
  • M collections/community/aws/dms_replication_subnet_group_module.html
  • M collections/community/aws/docsite/CHANGELOG.html
  • M collections/community/aws/dynamodb_table_info_module.html
  • M collections/community/aws/dynamodb_table_module.html
  • M collections/community/aws/dynamodb_ttl_module.html
  • M collections/community/aws/ec2_ami_copy_module.html
  • M collections/community/aws/ec2_asg_info_module.html
  • M collections/community/aws/ec2_asg_instance_refresh_info_module.html
  • M collections/community/aws/ec2_asg_instance_refresh_module.html
  • M collections/community/aws/ec2_asg_lifecycle_hook_module.html
  • M collections/community/aws/ec2_asg_module.html
  • M collections/community/aws/ec2_asg_scheduled_action_module.html
  • M collections/community/aws/ec2_carrier_gateway_info_module.html
  • M collections/community/aws/ec2_carrier_gateway_module.html
  • M collections/community/aws/ec2_customer_gateway_info_module.html
  • M collections/community/aws/ec2_customer_gateway_module.html
  • M collections/community/aws/ec2_eip_info_module.html
  • M collections/community/aws/ec2_eip_module.html
  • M collections/community/aws/ec2_elb_module.html
  • M collections/community/aws/ec2_instance_info_module.html
  • M collections/community/aws/ec2_instance_module.html
  • M collections/community/aws/ec2_launch_template_module.html
  • M collections/community/aws/ec2_lc_find_module.html
  • M collections/community/aws/ec2_lc_info_module.html
  • M collections/community/aws/ec2_lc_module.html
  • M collections/community/aws/ec2_metric_alarm_module.html
  • M collections/community/aws/ec2_placement_group_info_module.html
  • M collections/community/aws/ec2_placement_group_module.html
  • M collections/community/aws/ec2_scaling_policy_module.html
  • M collections/community/aws/ec2_snapshot_copy_module.html
  • M collections/community/aws/ec2_transit_gateway_info_module.html
  • M collections/community/aws/ec2_transit_gateway_module.html
  • M collections/community/aws/ec2_transit_gateway_vpc_attachment_info_module.html
  • M collections/community/aws/ec2_transit_gateway_vpc_attachment_module.html
  • M collections/community/aws/ec2_vpc_egress_igw_module.html
  • M collections/community/aws/ec2_vpc_endpoint_info_module.html
  • M collections/community/aws/ec2_vpc_endpoint_module.html
  • M collections/community/aws/ec2_vpc_endpoint_service_info_module.html
  • M collections/community/aws/ec2_vpc_igw_info_module.html
  • M collections/community/aws/ec2_vpc_igw_module.html
  • M collections/community/aws/ec2_vpc_nacl_info_module.html
  • M collections/community/aws/ec2_vpc_nacl_module.html
  • M collections/community/aws/ec2_vpc_nat_gateway_info_module.html
  • M collections/community/aws/ec2_vpc_nat_gateway_module.html
  • M collections/community/aws/ec2_vpc_peer_module.html
  • M collections/community/aws/ec2_vpc_peering_info_module.html
  • M collections/community/aws/ec2_vpc_route_table_info_module.html
  • M collections/community/aws/ec2_vpc_route_table_module.html
  • M collections/community/aws/ec2_vpc_vgw_info_module.html
  • M collections/community/aws/ec2_vpc_vgw_module.html
  • M collections/community/aws/ec2_vpc_vpn_info_module.html
  • M collections/community/aws/ec2_vpc_vpn_module.html
  • M collections/community/aws/ec2_win_password_module.html
  • M collections/community/aws/ecs_attribute_module.html
  • M collections/community/aws/ecs_cluster_module.html
  • M collections/community/aws/ecs_ecr_module.html
  • M collections/community/aws/ecs_service_info_module.html
  • M collections/community/aws/ecs_service_module.html
  • M collections/community/aws/ecs_tag_module.html
  • M collections/community/aws/ecs_task_module.html
  • M collections/community/aws/ecs_taskdefinition_info_module.html
  • M collections/community/aws/ecs_taskdefinition_module.html
  • M collections/community/aws/efs_info_module.html
  • M collections/community/aws/efs_module.html
  • M collections/community/aws/efs_tag_module.html
  • M collections/community/aws/eks_cluster_module.html
  • M collections/community/aws/eks_fargate_profile_module.html
  • M collections/community/aws/eks_nodegroup_module.html
  • M collections/community/aws/elasticache_info_module.html
  • M collections/community/aws/elasticache_module.html
  • M collections/community/aws/elasticache_parameter_group_module.html
  • M collections/community/aws/elasticache_snapshot_module.html
  • M collections/community/aws/elasticache_subnet_group_module.html
  • M collections/community/aws/elasticbeanstalk_app_module.html
  • M collections/community/aws/elb_application_lb_info_module.html
  • M collections/community/aws/elb_application_lb_module.html
  • M collections/community/aws/elb_classic_lb_info_module.html
  • M collections/community/aws/elb_classic_lb_module.html
  • M collections/community/aws/elb_instance_module.html
  • M collections/community/aws/elb_network_lb_module.html
  • M collections/community/aws/elb_target_group_info_module.html
  • M collections/community/aws/elb_target_group_module.html
  • M collections/community/aws/elb_target_info_module.html
  • M collections/community/aws/elb_target_module.html
  • M collections/community/aws/execute_lambda_module.html
  • M collections/community/aws/glue_connection_module.html
  • M collections/community/aws/glue_crawler_module.html
  • M collections/community/aws/glue_job_module.html
  • M collections/community/aws/iam_access_key_info_module.html
  • M collections/community/aws/iam_access_key_module.html
  • M collections/community/aws/iam_group_module.html
  • M collections/community/aws/iam_managed_policy_module.html
  • M collections/community/aws/iam_mfa_device_info_module.html
  • M collections/community/aws/iam_password_policy_module.html
  • M collections/community/aws/iam_policy_info_module.html
  • M collections/community/aws/iam_policy_module.html
  • M collections/community/aws/iam_role_info_module.html
  • M collections/community/aws/iam_role_module.html
  • M collections/community/aws/iam_saml_federation_module.html
  • M collections/community/aws/iam_server_certificate_info_module.html
  • M collections/community/aws/iam_server_certificate_module.html
  • M collections/community/aws/iam_user_info_module.html
  • M collections/community/aws/iam_user_module.html
  • M collections/community/aws/index.html
  • M collections/community/aws/inspector_target_module.html
  • M collections/community/aws/kinesis_stream_module.html
  • M collections/community/aws/kms_key_info_module.html
  • M collections/community/aws/kms_key_module.html
  • M collections/community/aws/lambda_alias_module.html
  • M collections/community/aws/lambda_event_module.html
  • M collections/community/aws/lambda_execute_module.html
  • M collections/community/aws/lambda_info_module.html
  • M collections/community/aws/lambda_module.html
  • M collections/community/aws/lambda_policy_module.html
  • M collections/community/aws/lightsail_module.html
  • M collections/community/aws/lightsail_snapshot_module.html
  • M collections/community/aws/lightsail_static_ip_module.html
  • M collections/community/aws/mq_broker_config_module.html
  • M collections/community/aws/mq_broker_info_module.html
  • M collections/community/aws/mq_broker_module.html
  • M collections/community/aws/mq_user_info_module.html
  • M collections/community/aws/mq_user_module.html
  • M collections/community/aws/msk_cluster_module.html
  • M collections/community/aws/msk_config_module.html
  • M collections/community/aws/networkfirewall_info_module.html
  • M collections/community/aws/networkfirewall_module.html
  • M collections/community/aws/networkfirewall_policy_info_module.html
  • M collections/community/aws/networkfirewall_policy_module.html
  • M collections/community/aws/networkfirewall_rule_group_info_module.html
  • M collections/community/aws/networkfirewall_rule_group_module.html
  • M collections/community/aws/opensearch_info_module.html
  • M collections/community/aws/opensearch_module.html
  • M collections/community/aws/rds_cluster_info_module.html
  • M collections/community/aws/rds_cluster_module.html
  • M collections/community/aws/rds_cluster_snapshot_module.html
  • M collections/community/aws/rds_instance_info_module.html
  • M collections/community/aws/rds_instance_module.html
  • M collections/community/aws/rds_instance_snapshot_module.html
  • M collections/community/aws/rds_option_group_info_module.html
  • M collections/community/aws/rds_option_group_module.html
  • M collections/community/aws/rds_param_group_module.html
  • M collections/community/aws/rds_snapshot_info_module.html
  • M collections/community/aws/rds_subnet_group_module.html
  • M collections/community/aws/redshift_cross_region_snapshots_module.html
  • M collections/community/aws/redshift_info_module.html
  • M collections/community/aws/redshift_module.html
  • M collections/community/aws/redshift_subnet_group_module.html
  • M collections/community/aws/route53_health_check_module.html
  • M collections/community/aws/route53_info_module.html
  • M collections/community/aws/route53_module.html
  • M collections/community/aws/route53_wait_module.html
  • M collections/community/aws/route53_zone_module.html
  • M collections/community/aws/s3_bucket_info_module.html
  • M collections/community/aws/s3_bucket_notification_module.html
  • M collections/community/aws/s3_cors_module.html
  • M collections/community/aws/s3_lifecycle_module.html
  • M collections/community/aws/s3_logging_module.html
  • M collections/community/aws/s3_metrics_configuration_module.html
  • M collections/community/aws/s3_sync_module.html
  • M collections/community/aws/s3_website_module.html
  • M collections/community/aws/secretsmanager_secret_module.html
  • M collections/community/aws/ses_identity_module.html
  • M collections/community/aws/ses_identity_policy_module.html
  • M collections/community/aws/ses_rule_set_module.html
  • M collections/community/aws/sns_module.html
  • M collections/community/aws/sns_topic_info_module.html
  • M collections/community/aws/sns_topic_module.html
  • M collections/community/aws/sqs_queue_module.html
  • M collections/community/aws/ssm_inventory_info_module.html
  • M collections/community/aws/ssm_parameter_module.html
  • M collections/community/aws/stepfunctions_state_machine_execution_module.html
  • M collections/community/aws/stepfunctions_state_machine_module.html
  • M collections/community/aws/storagegateway_info_module.html
  • M collections/community/aws/sts_assume_role_module.html
  • M collections/community/aws/sts_session_token_module.html
  • M collections/community/aws/waf_condition_module.html
  • M collections/community/aws/waf_info_module.html
  • M collections/community/aws/waf_rule_module.html
  • M collections/community/aws/waf_web_acl_module.html
  • M collections/community/aws/wafv2_ip_set_info_module.html
  • M collections/community/aws/wafv2_ip_set_module.html
  • M collections/community/aws/wafv2_resources_info_module.html
  • M collections/community/aws/wafv2_resources_module.html
  • M collections/community/aws/wafv2_rule_group_info_module.html
  • M collections/community/aws/wafv2_rule_group_module.html
  • M collections/community/aws/wafv2_web_acl_info_module.html
  • M collections/community/aws/wafv2_web_acl_module.html
Click to see the diff comparison.

NOTE: only file modifications are shown here. New and deleted files are excluded.
See the file list and check the published docs to see those files.

The diff output was truncated because it exceeded the maximum size.

diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/accessanalyzer_validate_policy_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/accessanalyzer_validate_policy_info_module.html
index 2eec68c..c3d067d 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/accessanalyzer_validate_policy_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/accessanalyzer_validate_policy_info_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.accessanalyzer_validate_policy_info module – Performs validation of IAM policies<a class="headerlink" href="#community-aws-accessanalyzer-validate-policy-info-module-performs-validation-of-iam-policies" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/acm_certificate_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/acm_certificate_info_module.html
index 2b742c2..97dcc03 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/acm_certificate_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/acm_certificate_info_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.acm_certificate_info module – Retrieve certificate information from AWS Certificate Manager service<a class="headerlink" href="#community-aws-acm-certificate-info-module-retrieve-certificate-information-from-aws-certificate-manager-service" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/acm_certificate_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/acm_certificate_module.html
index 3cf98de..bf58117 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/acm_certificate_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/acm_certificate_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.acm_certificate module – Upload and delete certificates in the AWS Certificate Manager service<a class="headerlink" href="#community-aws-acm-certificate-module-upload-and-delete-certificates-in-the-aws-certificate-manager-service" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_domain_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_domain_module.html
index 2fadb08..293de97 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_domain_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_domain_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.api_gateway_domain module – Manage AWS API Gateway custom domains<a class="headerlink" href="#community-aws-api-gateway-domain-module-manage-aws-api-gateway-custom-domains" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_info_module.html
index 5f9c52f..fe5e309 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_info_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.api_gateway_info module – Gather information about ec2 instances in AWS<a class="headerlink" href="#community-aws-api-gateway-info-module-gather-information-about-ec2-instances-in-aws" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_module.html
index c7fef45..08cafc0 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/api_gateway_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/api_gateway_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.api_gateway module – Manage AWS API Gateway APIs<a class="headerlink" href="#community-aws-api-gateway-module-manage-aws-api-gateway-apis" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/application_autoscaling_policy_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/application_autoscaling_policy_module.html
index 388f7bc..3652d7d 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/application_autoscaling_policy_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/application_autoscaling_policy_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.application_autoscaling_policy module – Manage Application Auto Scaling Scaling Policies<a class="headerlink" href="#community-aws-application-autoscaling-policy-module-manage-application-auto-scaling-scaling-policies" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_complete_lifecycle_action_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_complete_lifecycle_action_module.html
index be36db9..cd25978 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_complete_lifecycle_action_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_complete_lifecycle_action_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_complete_lifecycle_action module – Completes the lifecycle action of an instance<a class="headerlink" href="#community-aws-autoscaling-complete-lifecycle-action-module-completes-the-lifecycle-action-of-an-instance" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_group_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_group_info_module.html
index db26d5a..d8051a6 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_group_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_group_info_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.autoscaling_group_info module<a class="headerlink" href="#community-aws-autoscaling-group-info-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.autoscaling_group_info</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_group_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_group_module.html
index 81cff23..b7fe5d7 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_group_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_group_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.autoscaling_group module<a class="headerlink" href="#community-aws-autoscaling-group-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.autoscaling_group</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_instance_refresh_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_instance_refresh_info_module.html
index 4b95831..fa3ae10 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_instance_refresh_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_instance_refresh_info_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_instance_refresh_info module – Gather information about EC2 Auto Scaling Group (ASG) Instance Refreshes in AWS<a class="headerlink" href="#community-aws-autoscaling-instance-refresh-info-module-gather-information-about-ec2-auto-scaling-group-asg-instance-refreshes-in-aws" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_instance_refresh_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_instance_refresh_module.html
index 2a9e25c..db91cd8 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_instance_refresh_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_instance_refresh_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_instance_refresh module – Start or cancel an EC2 Auto Scaling Group (ASG) instance refresh in AWS<a class="headerlink" href="#community-aws-autoscaling-instance-refresh-module-start-or-cancel-an-ec2-auto-scaling-group-asg-instance-refresh-in-aws" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_find_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_find_module.html
index 6afdce4..b778272 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_find_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_find_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_launch_config_find module – Find AWS Autoscaling Launch Configurations<a class="headerlink" href="#community-aws-autoscaling-launch-config-find-module-find-aws-autoscaling-launch-configurations" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_info_module.html
index 0e5dc3d..731690c 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_info_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_launch_config_info module – Gather information about AWS Autoscaling Launch Configurations<a class="headerlink" href="#community-aws-autoscaling-launch-config-info-module-gather-information-about-aws-autoscaling-launch-configurations" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_module.html
index a4f2dff..3221d2b 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_launch_config_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_launch_config_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_launch_config module – Create or delete AWS Autoscaling Launch Configurations<a class="headerlink" href="#community-aws-autoscaling-launch-config-module-create-or-delete-aws-autoscaling-launch-configurations" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_lifecycle_hook_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_lifecycle_hook_module.html
index 905e049..dce256c 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_lifecycle_hook_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_lifecycle_hook_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_lifecycle_hook module – Create, delete or update AWS ASG Lifecycle Hooks<a class="headerlink" href="#community-aws-autoscaling-lifecycle-hook-module-create-delete-or-update-aws-asg-lifecycle-hooks" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_policy_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_policy_module.html
index 65b9f7b..23c6e42 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_policy_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_policy_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_policy module – Create or delete AWS scaling policies for Autoscaling groups<a class="headerlink" href="#community-aws-autoscaling-policy-module-create-or-delete-aws-scaling-policies-for-autoscaling-groups" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_scheduled_action_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_scheduled_action_module.html
index 18d9908..a053456 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/autoscaling_scheduled_action_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/autoscaling_scheduled_action_module.html
@@ -137,7 +137,7 @@
 <h1>community.aws.autoscaling_scheduled_action module – Create, modify and delete ASG scheduled scaling actions<a class="headerlink" href="#community-aws-autoscaling-scheduled-action-module-create-modify-and-delete-asg-scheduled-scaling-actions" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This module is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>It is not included in <code class="docutils literal notranslate"><span class="pre">ansible-core</span></code>.
 To check whether it is installed, run <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">list</span></code>.</p>
 <p>To install it, use: <code class="code docutils literal notranslate"><span class="pre">ansible-galaxy</span> <span class="pre">collection</span> <span class="pre">install</span> <span class="pre">community.aws</span></code>.
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_acm_info_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_acm_info_module.html
index 27716b3..35bcb91 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_acm_info_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_acm_info_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_acm_info module<a class="headerlink" href="#community-aws-aws-acm-info-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_acm_info</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_acm_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_acm_module.html
index 43ad3c1..5d55ec3 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_acm_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_acm_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_acm module<a class="headerlink" href="#community-aws-aws-acm-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_acm</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_api_gateway_domain_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_api_gateway_domain_module.html
index 90436f4..7da787e 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_api_gateway_domain_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_api_gateway_domain_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_api_gateway_domain module<a class="headerlink" href="#community-aws-aws-api-gateway-domain-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_api_gateway_domain</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_api_gateway_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_api_gateway_module.html
index c3cddf5..3248d3d 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_api_gateway_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_api_gateway_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_api_gateway module<a class="headerlink" href="#community-aws-aws-api-gateway-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_api_gateway</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_application_scaling_policy_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_application_scaling_policy_module.html
index 01d6a68..e0d1a2c 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_application_scaling_policy_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_application_scaling_policy_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_application_scaling_policy module<a class="headerlink" href="#community-aws-aws-application-scaling-policy-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_application_scaling_policy</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_compute_environment_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_compute_environment_module.html
index b89fa27..64d3258 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_compute_environment_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_compute_environment_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_batch_compute_environment module<a class="headerlink" href="#community-aws-aws-batch-compute-environment-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_batch_compute_environment</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_job_definition_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_job_definition_module.html
index 0b2134a..973cfd5 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_job_definition_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_job_definition_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_batch_job_definition module<a class="headerlink" href="#community-aws-aws-batch-job-definition-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_batch_job_definition</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_job_queue_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_job_queue_module.html
index 753c547..4a90fdc 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_batch_job_queue_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_batch_job_queue_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_batch_job_queue module<a class="headerlink" href="#community-aws-aws-batch-job-queue-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_batch_job_queue</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codebuild_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codebuild_module.html
index 2056e03..6b13919 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codebuild_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codebuild_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_codebuild module<a class="headerlink" href="#community-aws-aws-codebuild-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_codebuild</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codecommit_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codecommit_module.html
index b424ac4..1505f7b 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codecommit_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codecommit_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_codecommit module<a class="headerlink" href="#community-aws-aws-codecommit-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code class="code docutils literal notranslate"><span class="pre">community.aws.aws_codecommit</span></code>.</p>
 </div>
 <ul class="simple">
diff --git a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codepipeline_module.html b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codepipeline_module.html
index 25e6f16..ea1ac56 100644
--- a/home/runner/work/community.aws/community.aws/docsbuild/base/collections/community/aws/aws_codepipeline_module.html
+++ b/home/runner/work/community.aws/community.aws/docsbuild/head/collections/community/aws/aws_codepipeline_module.html
@@ -118,7 +118,7 @@
 <h1>community.aws.aws_codepipeline module<a class="headerlink" href="#community-aws-aws-codepipeline-module" title="Link to this heading"></a></h1>
 <div class="admonition note">
 <p class="admonition-title">Note</p>
-<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 8.0.0-dev0).</p>
+<p>This redirect is part of the <a class="reference external" href="https://galaxy.ansible.com/ui/repo/published/community/aws/">community.aws collection</a> (version 9.0.0-dev0).</p>
 <p>To use it in a playbook, specify: <code c...*[Comment body truncated]*

Copy link
Contributor

Build failed.
https://ansible.softwarefactory-project.io/zuul/buildset/42dde4cbf51c4c20b9ec0955fcf2e922

ansible-galaxy-importer FAILURE in 4m 34s (non-voting)
✔️ build-ansible-collection SUCCESS in 13m 07s
✔️ ansible-test-splitter SUCCESS in 5m 31s
✔️ integration-community.aws-1 SUCCESS in 9m 04s
✔️ integration-community.aws-2 SUCCESS in 8m 53s
✔️ integration-community.aws-3 SUCCESS in 11m 28s
✔️ integration-community.aws-4 SUCCESS in 12m 41s
✔️ integration-community.aws-5 SUCCESS in 12m 22s
✔️ integration-community.aws-6 SUCCESS in 20m 05s
✔️ integration-community.aws-7 SUCCESS in 12m 03s
✔️ integration-community.aws-8 SUCCESS in 8m 57s
✔️ integration-community.aws-9 SUCCESS in 7m 53s
✔️ integration-community.aws-10 SUCCESS in 8m 07s
integration-community.aws-11 RETRY_LIMIT in 54s
Skipped 11 jobs

Copy link
Contributor

@tremble tremble left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From previous experience, combining profiles and explicitly defined credentials turns into a confusing mess. However, I think dropping the explicitly passed credentials is a poor solution here.

The code we use over in ansible_collections.amazon.aws.plugins.module_utils.botocore we explicitly block the combination of profile and credentials. I'd actually prefer to repeat that pattern here, and generate a deprecation which we later replace with an error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-7 PR should be backported to the stable-7 branch backport-8
Projects
None yet
Development

Successfully merging this pull request may close these issues.

aws_ssm.Connection._get_boto_client lose access_key, token when using aws profile
3 participants