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

Fixing namespaces. #858

Merged
merged 1 commit into from
Dec 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/aws/aws_ami/tasks/repack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
when: aws_ami_running_instances.instances | length > 0

- name: Create temporary EC2 instance from the new AMI.
community.aws.ec2_instance: # @TODO: soon to move to amazon.aws collection
amazon.aws.ec2_instance:
profile: "{{ aws_ami.aws_profile }}"
key_name: "{{ aws_ami.repack.key_name }}"
instance_type: "{{ aws_ami.instance_type }}"
Expand Down Expand Up @@ -116,7 +116,7 @@
when: aws_ami_running_instances.instances | length > 0

- name: Terminate the temporary EC2 instance.
community.aws.ec2_instance: # @TODO: soon to move to amazon.aws collection
amazon.aws.ec2_instance:
profile: "{{ aws_ami.aws_profile }}"
region: "{{ aws_ami.region }}"
state: absent
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_ec2_autoscale_cluster/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
- aws_ec2_autoscale_cluster.efs

- name: Gather running instances information.
community.aws.ec2_instance_info:
amazon.aws.ec2_instance_info:
profile: "{{ aws_ec2_autoscale_cluster.aws_profile }}"
region: "{{ aws_ec2_autoscale_cluster.region }}"
filters:
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_ec2_with_eip/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
force: true

- name: Create EC2 instance.
community.aws.ec2_instance: # @TODO: soon to move to amazon.aws collection
amazon.aws.ec2_instance:
profile: "{{ aws_ec2_with_eip.aws_profile }}"
key_name: "{{ aws_ec2_with_eip.key_name }}"
instance_type: "{{ aws_ec2_with_eip.instance_type }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_elb/tasks/target_group_instances.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: "Gather EC2 instance info for {{ target_group.name }} target group instance."
community.aws.ec2_instance_info:
amazon.aws.ec2_instance_info:
profile: "{{ aws_elb.aws_profile }}"
region: "{{ aws_elb.region }}"
filters:
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_vpc/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
label: "{{ security_group.name }}"

- name: Create IGW
community.aws.ec2_vpc_igw:
amazon.aws.ec2_vpc_igw:
profile: "{{ aws_vpc.aws_profile }}"
region: "{{ aws_vpc.region }}"
vpc_id: "{{ _aws_vpc_vpc.vpc.id }}"
Expand Down
6 changes: 3 additions & 3 deletions roles/lhci/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@
state: present

- name: Install "lhci/cli" node.js package.
ansible.builtin.npm:
community.general.packaging.language.npm:
name: "@lhci/cli"
production: true
global: true

- name: Install "lighthouse" node.js package.
ansible.builtin.npm:
community.general.packaging.language.npm:
name: "lighthouse"
production: true
global: true
global: true
2 changes: 1 addition & 1 deletion roles/nginx/tasks/domain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
- domain.basic_auth.auth_pass | length > 0

- name: Create basic htauth files.
ansible.builtin.htpasswd:
community.general.web_infrastructure.htpasswd:
path: "/etc/nginx/passwords/{{ domain.server_name }}.htpasswd"
name: "{{ domain.basic_auth.auth_user }}"
password: "{{ _nginx_htauth_pass }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/user_ansible/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
when: user_ansible.sudoer

- name: Copy SSH public key to target.
ansible.builtin.authorized_key:
ansible.posix.authorized_key:
key: "{{ key }}"
user: "{{ user_ansible.username }}"
state: present
Expand Down