all: children: zuul_unreachable: hosts: {} hosts: controller: ansible_connection: ssh ansible_host: 18.217.216.215 ansible_port: 22 ansible_python_interpreter: auto ansible_user: zuul-worker nodepool: az: us-east-2b cloud: AWS external_id: i-03a89a410512ccdef host_id: null interface_ip: 18.217.216.215 label: ansible-fedora-37-1vcpu private_ipv4: 172.16.240.65 private_ipv6: null provider: ansible-us-east-2 public_ipv4: 18.217.216.215 public_ipv6: null region: us-east-2 slot: null zuul_use_fetch_output: true vars: zuul: _inheritance_path: - '' - '' - '' - '' ansible_version: '8' artifacts: - branch: main change: '2334' job: build-ansible-collection metadata: type: zuul_manifest name: Zuul Manifest patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: ansible-collections/community.aws url: https://43b32beb440d225fdf2b-6ebdf222abd82c5dd14a59ac7bff1bc1.ssl.cf1.rackcdn.com/ansible/b0ce34c87ad44ae3a236bcf1343f9cbf/zuul-manifest.json - branch: main change: '2334' job: build-ansible-collection metadata: type: ansible_collection version: 11.0.0 name: community.aws patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: ansible-collections/community.aws url: https://43b32beb440d225fdf2b-6ebdf222abd82c5dd14a59ac7bff1bc1.ssl.cf1.rackcdn.com/ansible/b0ce34c87ad44ae3a236bcf1343f9cbf/artifacts/community-aws-11.0.0.tar.gz - branch: main change: '2334' job: build-ansible-collection metadata: type: ansible_collection version: 11.0.0 name: amazon.aws patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: ansible-collections/community.aws url: https://43b32beb440d225fdf2b-6ebdf222abd82c5dd14a59ac7bff1bc1.ssl.cf1.rackcdn.com/ansible/b0ce34c87ad44ae3a236bcf1343f9cbf/artifacts/amazon-aws-11.0.0.tar.gz attempts: 1 branch: main build: 87c6544fbad548dcbe7b618518bbdf51 build_refs: - branch: main change: '2334' change_message: "Add module organization_account\n\n##### SUMMARY\r\n\r\nThis PR introduces a new module `aws_manage_account.py` for managing AWS Organizations accounts. The module provides functionality to create new AWS accounts within an Organization and move existing accounts between Organizational Units (OUs). This addresses the need for automated account lifecycle management in AWS Organizations environments.\r\n\r\nKey features include:\r\n\r\n \ - Create new AWS accounts with optional custom IAM role names and tags\r\n \ - Move existing accounts between Organizational Units\r\n - Automatic polling and waiting for account creation completion\r\n - Comprehensive error handling and validation\r\n - Support for billing access configuration\r\n\r\n-----\r\n\r\n##### ISSUE TYPE\r\n\r\n - New Module Pull Request\r\n\r\n-----\r\n\r\n##### COMPONENT NAME\r\n\r\naws_manage_account (AWS Organizations Account Management)\r\n\r\n-----\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe module supports two main actions:\r\n\r\n1. \ **create\\_account**: Creates a new AWS account within the Organization\r\n\r\n \ - Supports custom IAM role names (defaults to `OrganizationAccountAccessRole`)\r\n \ - Optional account-level tags\r\n - Configurable billing access permissions\r\n - Automatic polling until account creation completes\r\n\r\n2. \ **move\\_account**: Moves existing accounts between Organizational Units\r\n\r\n \ - Validates current parent OU before attempting move\r\n - Prevents unnecessary operations if account is already in target OU\r\n - Provides clear feedback on source and destination OUs\r\n\r\nThe module includes comprehensive documentation with examples for both simple account creation and advanced scenarios with custom roles and tags. It also provides detailed return values for integration with other Ansible tasks.\r\n\r\n**Usage Example:**\r\n\r\n```yaml\r\n\r\n\r\n---\r\n- name: AWS Account Management\r\n hosts: localhost\r\n connection: local\r\n \ gather_facts: false\r\n vars:\r\n project: \"AppProject\"\r\n email: \"lauroinf5@hotmail.com\"\r\n destination_ou_id: \"ou-8rpp-cm4auzsq\"\r\n\r\n \ role_name_custom: \"OrganizationAccountAccessRole\"\r\n\r\n tags_da_conta:\r\n \ - Key: Project\r\n Value: \"{{ project }}\"\r\n - Key: Environment\r\n Value: \"development\"\r\n - Key: AutomationTool\r\n \ Value: \"Ansible\"\r\n\r\n tasks:\r\n - name: Criar nova conta AWS com Role e Tags\r\n laurobmb.aws.organization_account:\r\n action: create_account\r\n email: \"{{ email }}\"\r\n name: \"{{ project }}\"\r\n admin_role_name: \"{{ role_name_custom }}\"\r\n tags: \"{{ tags_da_conta }}\"\r\n register: create_account_result\r\n\r\n \ - name: Mostrar o resultado completo da cria\xE7\xE3o\r\n ansible.builtin.debug:\r\n \ var: create_account_result\r\n\r\n - name: Mover a conta rec\xE9m-criada para a OU de destino\r\n laurobmb.aws.organization_account:\r\n action: move_account\r\n id: \"{{ create_account_result.status.AccountId }}\"\r\n ou_id: \"{{ destination_ou_id }}\"\r\n when: create_account_result.changed\r\n\r\n```" change_url: https://github.com/ansible-collections/community.aws/pull/2334 commit_id: 54db7b5001b298e8a66433cef66cd2a94c969eb9 patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.aws name: ansible-collections/community.aws short_name: community.aws src_dir: src/github.com/ansible-collections/community.aws topic: null buildset: ac7f77c3f0f645489fbfa9e9dbb7a4a6 buildset_refs: - branch: main change: '2334' change_message: "Add module organization_account\n\n##### SUMMARY\r\n\r\nThis PR introduces a new module `aws_manage_account.py` for managing AWS Organizations accounts. The module provides functionality to create new AWS accounts within an Organization and move existing accounts between Organizational Units (OUs). This addresses the need for automated account lifecycle management in AWS Organizations environments.\r\n\r\nKey features include:\r\n\r\n \ - Create new AWS accounts with optional custom IAM role names and tags\r\n \ - Move existing accounts between Organizational Units\r\n - Automatic polling and waiting for account creation completion\r\n - Comprehensive error handling and validation\r\n - Support for billing access configuration\r\n\r\n-----\r\n\r\n##### ISSUE TYPE\r\n\r\n - New Module Pull Request\r\n\r\n-----\r\n\r\n##### COMPONENT NAME\r\n\r\naws_manage_account (AWS Organizations Account Management)\r\n\r\n-----\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe module supports two main actions:\r\n\r\n1. \ **create\\_account**: Creates a new AWS account within the Organization\r\n\r\n \ - Supports custom IAM role names (defaults to `OrganizationAccountAccessRole`)\r\n \ - Optional account-level tags\r\n - Configurable billing access permissions\r\n - Automatic polling until account creation completes\r\n\r\n2. \ **move\\_account**: Moves existing accounts between Organizational Units\r\n\r\n \ - Validates current parent OU before attempting move\r\n - Prevents unnecessary operations if account is already in target OU\r\n - Provides clear feedback on source and destination OUs\r\n\r\nThe module includes comprehensive documentation with examples for both simple account creation and advanced scenarios with custom roles and tags. It also provides detailed return values for integration with other Ansible tasks.\r\n\r\n**Usage Example:**\r\n\r\n```yaml\r\n\r\n\r\n---\r\n- name: AWS Account Management\r\n hosts: localhost\r\n connection: local\r\n \ gather_facts: false\r\n vars:\r\n project: \"AppProject\"\r\n email: \"lauroinf5@hotmail.com\"\r\n destination_ou_id: \"ou-8rpp-cm4auzsq\"\r\n\r\n \ role_name_custom: \"OrganizationAccountAccessRole\"\r\n\r\n tags_da_conta:\r\n \ - Key: Project\r\n Value: \"{{ project }}\"\r\n - Key: Environment\r\n Value: \"development\"\r\n - Key: AutomationTool\r\n \ Value: \"Ansible\"\r\n\r\n tasks:\r\n - name: Criar nova conta AWS com Role e Tags\r\n laurobmb.aws.organization_account:\r\n action: create_account\r\n email: \"{{ email }}\"\r\n name: \"{{ project }}\"\r\n admin_role_name: \"{{ role_name_custom }}\"\r\n tags: \"{{ tags_da_conta }}\"\r\n register: create_account_result\r\n\r\n \ - name: Mostrar o resultado completo da cria\xE7\xE3o\r\n ansible.builtin.debug:\r\n \ var: create_account_result\r\n\r\n - name: Mover a conta rec\xE9m-criada para a OU de destino\r\n laurobmb.aws.organization_account:\r\n action: move_account\r\n id: \"{{ create_account_result.status.AccountId }}\"\r\n ou_id: \"{{ destination_ou_id }}\"\r\n when: create_account_result.changed\r\n\r\n```" change_url: https://github.com/ansible-collections/community.aws/pull/2334 commit_id: 54db7b5001b298e8a66433cef66cd2a94c969eb9 patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.aws name: ansible-collections/community.aws short_name: community.aws src_dir: src/github.com/ansible-collections/community.aws topic: null change: '2334' change_message: "Add module organization_account\n\n##### SUMMARY\r\n\r\nThis PR introduces a new module `aws_manage_account.py` for managing AWS Organizations accounts. The module provides functionality to create new AWS accounts within an Organization and move existing accounts between Organizational Units (OUs). This addresses the need for automated account lifecycle management in AWS Organizations environments.\r\n\r\nKey features include:\r\n\r\n - Create new AWS accounts with optional custom IAM role names and tags\r\n - Move existing accounts between Organizational Units\r\n - Automatic polling and waiting for account creation completion\r\n - Comprehensive error handling and validation\r\n - Support for billing access configuration\r\n\r\n-----\r\n\r\n##### ISSUE TYPE\r\n\r\n - New Module Pull Request\r\n\r\n-----\r\n\r\n##### COMPONENT NAME\r\n\r\naws_manage_account (AWS Organizations Account Management)\r\n\r\n-----\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe module supports two main actions:\r\n\r\n1. \ **create\\_account**: Creates a new AWS account within the Organization\r\n\r\n \ - Supports custom IAM role names (defaults to `OrganizationAccountAccessRole`)\r\n \ - Optional account-level tags\r\n - Configurable billing access permissions\r\n - Automatic polling until account creation completes\r\n\r\n2. \ **move\\_account**: Moves existing accounts between Organizational Units\r\n\r\n \ - Validates current parent OU before attempting move\r\n - Prevents unnecessary operations if account is already in target OU\r\n - Provides clear feedback on source and destination OUs\r\n\r\nThe module includes comprehensive documentation with examples for both simple account creation and advanced scenarios with custom roles and tags. It also provides detailed return values for integration with other Ansible tasks.\r\n\r\n**Usage Example:**\r\n\r\n```yaml\r\n\r\n\r\n---\r\n- name: AWS Account Management\r\n hosts: localhost\r\n connection: local\r\n \ gather_facts: false\r\n vars:\r\n project: \"AppProject\"\r\n email: \"lauroinf5@hotmail.com\"\r\n destination_ou_id: \"ou-8rpp-cm4auzsq\"\r\n\r\n \ role_name_custom: \"OrganizationAccountAccessRole\"\r\n\r\n tags_da_conta:\r\n \ - Key: Project\r\n Value: \"{{ project }}\"\r\n - Key: Environment\r\n \ Value: \"development\"\r\n - Key: AutomationTool\r\n Value: \"Ansible\"\r\n\r\n tasks:\r\n - name: Criar nova conta AWS com Role e Tags\r\n laurobmb.aws.organization_account:\r\n action: create_account\r\n \ email: \"{{ email }}\"\r\n name: \"{{ project }}\"\r\n admin_role_name: \"{{ role_name_custom }}\"\r\n tags: \"{{ tags_da_conta }}\"\r\n register: create_account_result\r\n\r\n - name: Mostrar o resultado completo da cria\xE7\xE3o\r\n \ ansible.builtin.debug:\r\n var: create_account_result\r\n\r\n \ - name: Mover a conta rec\xE9m-criada para a OU de destino\r\n laurobmb.aws.organization_account:\r\n \ action: move_account\r\n id: \"{{ create_account_result.status.AccountId }}\"\r\n ou_id: \"{{ destination_ou_id }}\"\r\n when: create_account_result.changed\r\n\r\n```" change_url: https://github.com/ansible-collections/community.aws/pull/2334 child_jobs: [] commit_id: 54db7b5001b298e8a66433cef66cd2a94c969eb9 event_id: 1bd45a40-923c-11f0-8d79-d815a089e2b0 executor: hostname: ze02.softwarefactory-project.io inventory_file: /var/lib/zuul/builds/87c6544fbad548dcbe7b618518bbdf51/ansible/inventory.yaml log_root: /var/lib/zuul/builds/87c6544fbad548dcbe7b618518bbdf51/work/logs result_data_file: /var/lib/zuul/builds/87c6544fbad548dcbe7b618518bbdf51/work/results.json src_root: /var/lib/zuul/builds/87c6544fbad548dcbe7b618518bbdf51/work/src work_root: /var/lib/zuul/builds/87c6544fbad548dcbe7b618518bbdf51/work items: - branch: main change: '2334' change_message: "Add module organization_account\n\n##### SUMMARY\r\n\r\nThis PR introduces a new module `aws_manage_account.py` for managing AWS Organizations accounts. The module provides functionality to create new AWS accounts within an Organization and move existing accounts between Organizational Units (OUs). This addresses the need for automated account lifecycle management in AWS Organizations environments.\r\n\r\nKey features include:\r\n\r\n \ - Create new AWS accounts with optional custom IAM role names and tags\r\n \ - Move existing accounts between Organizational Units\r\n - Automatic polling and waiting for account creation completion\r\n - Comprehensive error handling and validation\r\n - Support for billing access configuration\r\n\r\n-----\r\n\r\n##### ISSUE TYPE\r\n\r\n - New Module Pull Request\r\n\r\n-----\r\n\r\n##### COMPONENT NAME\r\n\r\naws_manage_account (AWS Organizations Account Management)\r\n\r\n-----\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe module supports two main actions:\r\n\r\n1. \ **create\\_account**: Creates a new AWS account within the Organization\r\n\r\n \ - Supports custom IAM role names (defaults to `OrganizationAccountAccessRole`)\r\n \ - Optional account-level tags\r\n - Configurable billing access permissions\r\n - Automatic polling until account creation completes\r\n\r\n2. \ **move\\_account**: Moves existing accounts between Organizational Units\r\n\r\n \ - Validates current parent OU before attempting move\r\n - Prevents unnecessary operations if account is already in target OU\r\n - Provides clear feedback on source and destination OUs\r\n\r\nThe module includes comprehensive documentation with examples for both simple account creation and advanced scenarios with custom roles and tags. It also provides detailed return values for integration with other Ansible tasks.\r\n\r\n**Usage Example:**\r\n\r\n```yaml\r\n\r\n\r\n---\r\n- name: AWS Account Management\r\n hosts: localhost\r\n connection: local\r\n \ gather_facts: false\r\n vars:\r\n project: \"AppProject\"\r\n email: \"lauroinf5@hotmail.com\"\r\n destination_ou_id: \"ou-8rpp-cm4auzsq\"\r\n\r\n \ role_name_custom: \"OrganizationAccountAccessRole\"\r\n\r\n tags_da_conta:\r\n \ - Key: Project\r\n Value: \"{{ project }}\"\r\n - Key: Environment\r\n Value: \"development\"\r\n - Key: AutomationTool\r\n \ Value: \"Ansible\"\r\n\r\n tasks:\r\n - name: Criar nova conta AWS com Role e Tags\r\n laurobmb.aws.organization_account:\r\n action: create_account\r\n email: \"{{ email }}\"\r\n name: \"{{ project }}\"\r\n admin_role_name: \"{{ role_name_custom }}\"\r\n tags: \"{{ tags_da_conta }}\"\r\n register: create_account_result\r\n\r\n \ - name: Mostrar o resultado completo da cria\xE7\xE3o\r\n ansible.builtin.debug:\r\n \ var: create_account_result\r\n\r\n - name: Mover a conta rec\xE9m-criada para a OU de destino\r\n laurobmb.aws.organization_account:\r\n action: move_account\r\n id: \"{{ create_account_result.status.AccountId }}\"\r\n ou_id: \"{{ destination_ou_id }}\"\r\n when: create_account_result.changed\r\n\r\n```" change_url: https://github.com/ansible-collections/community.aws/pull/2334 commit_id: 54db7b5001b298e8a66433cef66cd2a94c969eb9 patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.aws name: ansible-collections/community.aws short_name: community.aws src_dir: src/github.com/ansible-collections/community.aws topic: null job: ansible-galaxy-importer jobtags: [] max_attempts: 3 message: QWRkIG1vZHVsZSBvcmdhbml6YXRpb25fYWNjb3VudAoKIyMjIyMgU1VNTUFSWQ0KDQpUaGlzIFBSIGludHJvZHVjZXMgYSBuZXcgbW9kdWxlIGBhd3NfbWFuYWdlX2FjY291bnQucHlgIGZvciBtYW5hZ2luZyBBV1MgT3JnYW5pemF0aW9ucyBhY2NvdW50cy4gVGhlIG1vZHVsZSBwcm92aWRlcyBmdW5jdGlvbmFsaXR5IHRvIGNyZWF0ZSBuZXcgQVdTIGFjY291bnRzIHdpdGhpbiBhbiBPcmdhbml6YXRpb24gYW5kIG1vdmUgZXhpc3RpbmcgYWNjb3VudHMgYmV0d2VlbiBPcmdhbml6YXRpb25hbCBVbml0cyAoT1VzKS4gVGhpcyBhZGRyZXNzZXMgdGhlIG5lZWQgZm9yIGF1dG9tYXRlZCBhY2NvdW50IGxpZmVjeWNsZSBtYW5hZ2VtZW50IGluIEFXUyBPcmdhbml6YXRpb25zIGVudmlyb25tZW50cy4NCg0KS2V5IGZlYXR1cmVzIGluY2x1ZGU6DQoNCiAgLSBDcmVhdGUgbmV3IEFXUyBhY2NvdW50cyB3aXRoIG9wdGlvbmFsIGN1c3RvbSBJQU0gcm9sZSBuYW1lcyBhbmQgdGFncw0KICAtIE1vdmUgZXhpc3RpbmcgYWNjb3VudHMgYmV0d2VlbiBPcmdhbml6YXRpb25hbCBVbml0cw0KICAtIEF1dG9tYXRpYyBwb2xsaW5nIGFuZCB3YWl0aW5nIGZvciBhY2NvdW50IGNyZWF0aW9uIGNvbXBsZXRpb24NCiAgLSBDb21wcmVoZW5zaXZlIGVycm9yIGhhbmRsaW5nIGFuZCB2YWxpZGF0aW9uDQogIC0gU3VwcG9ydCBmb3IgYmlsbGluZyBhY2Nlc3MgY29uZmlndXJhdGlvbg0KDQotLS0tLQ0KDQojIyMjIyBJU1NVRSBUWVBFDQoNCiAgLSBOZXcgTW9kdWxlIFB1bGwgUmVxdWVzdA0KDQotLS0tLQ0KDQojIyMjIyBDT01QT05FTlQgTkFNRQ0KDQphd3NfbWFuYWdlX2FjY291bnQgKEFXUyBPcmdhbml6YXRpb25zIEFjY291bnQgTWFuYWdlbWVudCkNCg0KLS0tLS0NCg0KIyMjIyMgQURESVRJT05BTCBJTkZPUk1BVElPTg0KDQpUaGUgbW9kdWxlIHN1cHBvcnRzIHR3byBtYWluIGFjdGlvbnM6DQoNCjEuICAqKmNyZWF0ZVxfYWNjb3VudCoqOiBDcmVhdGVzIGEgbmV3IEFXUyBhY2NvdW50IHdpdGhpbiB0aGUgT3JnYW5pemF0aW9uDQoNCiAgICAgIC0gU3VwcG9ydHMgY3VzdG9tIElBTSByb2xlIG5hbWVzIChkZWZhdWx0cyB0byBgT3JnYW5pemF0aW9uQWNjb3VudEFjY2Vzc1JvbGVgKQ0KICAgICAgLSBPcHRpb25hbCBhY2NvdW50LWxldmVsIHRhZ3MNCiAgICAgIC0gQ29uZmlndXJhYmxlIGJpbGxpbmcgYWNjZXNzIHBlcm1pc3Npb25zDQogICAgICAtIEF1dG9tYXRpYyBwb2xsaW5nIHVudGlsIGFjY291bnQgY3JlYXRpb24gY29tcGxldGVzDQoNCjIuICAqKm1vdmVcX2FjY291bnQqKjogTW92ZXMgZXhpc3RpbmcgYWNjb3VudHMgYmV0d2VlbiBPcmdhbml6YXRpb25hbCBVbml0cw0KDQogICAgICAtIFZhbGlkYXRlcyBjdXJyZW50IHBhcmVudCBPVSBiZWZvcmUgYXR0ZW1wdGluZyBtb3ZlDQogICAgICAtIFByZXZlbnRzIHVubmVjZXNzYXJ5IG9wZXJhdGlvbnMgaWYgYWNjb3VudCBpcyBhbHJlYWR5IGluIHRhcmdldCBPVQ0KICAgICAgLSBQcm92aWRlcyBjbGVhciBmZWVkYmFjayBvbiBzb3VyY2UgYW5kIGRlc3RpbmF0aW9uIE9Vcw0KDQpUaGUgbW9kdWxlIGluY2x1ZGVzIGNvbXByZWhlbnNpdmUgZG9jdW1lbnRhdGlvbiB3aXRoIGV4YW1wbGVzIGZvciBib3RoIHNpbXBsZSBhY2NvdW50IGNyZWF0aW9uIGFuZCBhZHZhbmNlZCBzY2VuYXJpb3Mgd2l0aCBjdXN0b20gcm9sZXMgYW5kIHRhZ3MuIEl0IGFsc28gcHJvdmlkZXMgZGV0YWlsZWQgcmV0dXJuIHZhbHVlcyBmb3IgaW50ZWdyYXRpb24gd2l0aCBvdGhlciBBbnNpYmxlIHRhc2tzLg0KDQoqKlVzYWdlIEV4YW1wbGU6KioNCg0KYGBgeWFtbA0KDQoNCi0tLQ0KLSBuYW1lOiBBV1MgQWNjb3VudCBNYW5hZ2VtZW50DQogIGhvc3RzOiBsb2NhbGhvc3QNCiAgY29ubmVjdGlvbjogbG9jYWwNCiAgZ2F0aGVyX2ZhY3RzOiBmYWxzZQ0KICB2YXJzOg0KICAgIHByb2plY3Q6ICJBcHBQcm9qZWN0Ig0KICAgIGVtYWlsOiAibGF1cm9pbmY1QGhvdG1haWwuY29tIg0KICAgIGRlc3RpbmF0aW9uX291X2lkOiAib3UtOHJwcC1jbTRhdXpzcSINCg0KICAgIHJvbGVfbmFtZV9jdXN0b206ICJPcmdhbml6YXRpb25BY2NvdW50QWNjZXNzUm9sZSINCg0KICAgIHRhZ3NfZGFfY29udGE6DQogICAgICAtIEtleTogUHJvamVjdA0KICAgICAgICBWYWx1ZTogInt7IHByb2plY3QgfX0iDQogICAgICAtIEtleTogRW52aXJvbm1lbnQNCiAgICAgICAgVmFsdWU6ICJkZXZlbG9wbWVudCINCiAgICAgIC0gS2V5OiBBdXRvbWF0aW9uVG9vbA0KICAgICAgICBWYWx1ZTogIkFuc2libGUiDQoNCiAgdGFza3M6DQogICAgLSBuYW1lOiBDcmlhciBub3ZhIGNvbnRhIEFXUyBjb20gUm9sZSBlIFRhZ3MNCiAgICAgIGxhdXJvYm1iLmF3cy5vcmdhbml6YXRpb25fYWNjb3VudDoNCiAgICAgICAgYWN0aW9uOiBjcmVhdGVfYWNjb3VudA0KICAgICAgICBlbWFpbDogInt7IGVtYWlsIH19Ig0KICAgICAgICBuYW1lOiAie3sgcHJvamVjdCB9fSINCiAgICAgICAgYWRtaW5fcm9sZV9uYW1lOiAie3sgcm9sZV9uYW1lX2N1c3RvbSB9fSINCiAgICAgICAgdGFnczogInt7IHRhZ3NfZGFfY29udGEgfX0iDQogICAgICByZWdpc3RlcjogY3JlYXRlX2FjY291bnRfcmVzdWx0DQoNCiAgICAtIG5hbWU6IE1vc3RyYXIgbyByZXN1bHRhZG8gY29tcGxldG8gZGEgY3JpYcOnw6NvDQogICAgICBhbnNpYmxlLmJ1aWx0aW4uZGVidWc6DQogICAgICAgIHZhcjogY3JlYXRlX2FjY291bnRfcmVzdWx0DQoNCiAgICAtIG5hbWU6IE1vdmVyIGEgY29udGEgcmVjw6ltLWNyaWFkYSBwYXJhIGEgT1UgZGUgZGVzdGlubw0KICAgICAgbGF1cm9ibWIuYXdzLm9yZ2FuaXphdGlvbl9hY2NvdW50Og0KICAgICAgICBhY3Rpb246IG1vdmVfYWNjb3VudA0KICAgICAgICBpZDogInt7IGNyZWF0ZV9hY2NvdW50X3Jlc3VsdC5zdGF0dXMuQWNjb3VudElkIH19Ig0KICAgICAgICBvdV9pZDogInt7IGRlc3RpbmF0aW9uX291X2lkIH19Ig0KICAgICAgd2hlbjogY3JlYXRlX2FjY291bnRfcmVzdWx0LmNoYW5nZWQNCg0KYGBg patchset: 54db7b5001b298e8a66433cef66cd2a94c969eb9 pipeline: third-party-check playbook_context: playbook_projects: trusted/project_0/github.com/ansible/zuul-config: canonical_name: github.com/ansible/zuul-config checkout: master commit: 9cec676fdc5b2a7fbf401767643a3c48545c082f trusted/project_1/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: ca4935d71c13111845a75dff793f3bd6a3f144e1 untrusted/project_0/github.com/ansible/ansible-zuul-jobs: canonical_name: github.com/ansible/ansible-zuul-jobs checkout: master commit: f22f22e05a919f76989979ce0a538febe2c4e73f untrusted/project_1/github.com/ansible/zuul-config: canonical_name: github.com/ansible/zuul-config checkout: master commit: 9cec676fdc5b2a7fbf401767643a3c48545c082f untrusted/project_2/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: ca4935d71c13111845a75dff793f3bd6a3f144e1 playbooks: - path: untrusted/project_0/github.com/ansible/ansible-zuul-jobs/playbooks/ansible-galaxy-importer/run.yaml roles: - checkout: master checkout_description: playbook branch link_name: ansible/playbook_0/role_0/zuul-jobs link_target: untrusted/project_0/github.com/ansible/ansible-zuul-jobs role_path: ansible/playbook_0/role_0/zuul-jobs/roles - checkout: master checkout_description: project default branch link_name: ansible/playbook_0/role_1/zuul-config link_target: untrusted/project_1/github.com/ansible/zuul-config role_path: ansible/playbook_0/role_1/zuul-config/roles - checkout: master checkout_description: project default branch link_name: ansible/playbook_0/role_2/zuul-jobs link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs role_path: ansible/playbook_0/role_2/zuul-jobs/roles post_review: false project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.aws name: ansible-collections/community.aws short_name: community.aws src_dir: src/github.com/ansible-collections/community.aws projects: github.com/ansible-collections/community.aws: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.aws checkout: main checkout_description: zuul branch commit: 5e2e9aa87ca60958b53d0f40bdad5dee354b6187 name: ansible-collections/community.aws required: false short_name: community.aws src_dir: src/github.com/ansible-collections/community.aws github.com/ansible-network/releases: canonical_hostname: github.com canonical_name: github.com/ansible-network/releases checkout: master checkout_description: project default branch commit: 646b310655c531e4904be07f4ff8fc3a29addd09 name: ansible-network/releases required: true short_name: releases src_dir: src/github.com/ansible-network/releases ref: refs/pull/2334/head resources: {} tenant: ansible timeout: 1800 topic: null voting: false zuul_use_fetch_output: true