Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.
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
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 @@ -291,7 +291,7 @@
- aws_ec2_autoscale_cluster.deploy_cluster

- name: Gather IAM role info.
community.aws.iam_role_info:
amazon.aws.iam_role_info:
profile: "{{ aws_ec2_autoscale_cluster.aws_profile }}"
region: "{{ aws_ec2_autoscale_cluster.region }}"
name: "{{ aws_ec2_autoscale_cluster.iam_role_name }}"
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 @@ -13,7 +13,7 @@
_aws_ec2_with_eip_image_latest: "{{ _aws_ec2_with_eip_image.images | sort(attribute='creation_date') | last }}"

- name: Gather IAM role info.
community.aws.iam_role_info:
amazon.aws.iam_role_info:
profile: "{{ aws_ec2_with_eip.aws_profile }}"
region: "{{ aws_ec2_with_eip.region }}"
name: "{{ aws_ec2_with_eip.iam_role_name }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_iam_role/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- name: Create an IAM role.
community.aws.iam_role:
amazon.aws.iam_role:
profile: "{{ aws_iam_role.aws_profile }}"
name: "{{ aws_iam_role.name }}"
assume_role_policy_document: "{{ lookup('file', aws_iam_role.policy_document + '_document_policy.json') }}"
Expand Down
8 changes: 4 additions & 4 deletions roles/aws/aws_iam_saml/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
register: _aws_account_info

- name: Create a role for administrative access
community.aws.iam_role:
amazon.aws.iam_role:
name: "{{ aws_iam_saml.admin_role }}"
profile: "{{ aws_iam_saml.aws_profile }}"
tags: "{{ aws_iam_saml.tags }}"
Expand All @@ -37,7 +37,7 @@
- aws_iam_saml.admin_groups[0] is defined

- name: Create a role for read-only access
community.aws.iam_role:
amazon.aws.iam_role:
name: "{{ aws_iam_saml.readonly_role }}"
profile: "{{ aws_iam_saml.aws_profile }}"
tags: "{{ aws_iam_saml.tags }}"
Expand All @@ -51,7 +51,7 @@
- aws_iam_saml.readonly_groups[0] is defined

- name: Create a customer managed policy for billing access
community.aws.iam_managed_policy:
amazon.aws.iam_managed_policy:
policy_name: "{{ aws_iam_saml.billing_policy }}"
policy_description: "Custom policy for billing access"
profile: "{{ aws_iam_saml.aws_profile }}"
Expand All @@ -64,7 +64,7 @@
- aws_iam_saml.billing_groups[0] is defined

- name: Create a role for billing access
community.aws.iam_role:
amazon.aws.iam_role:
name: "{{ aws_iam_saml.billing_role }}"
profile: "{{ aws_iam_saml.aws_profile }}"
tags: "{{ aws_iam_saml.tags }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/aws/aws_s3_bucket/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
register: _aws_s3_bucket_bucket

- name: Create a matching policy.
community.aws.iam_managed_policy:
amazon.aws.iam_managed_policy:
profile: "{{ aws_s3_bucket.aws_profile }}"
region: "{{ aws_s3_bucket.region }}"
policy_name: "{{ aws_s3_bucket.name }}"
Expand Down
1 change: 1 addition & 0 deletions roles/debian/php-cli/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ php:
upload_max_filesize: 200M
max_file_uploads: 20
date_timezone: "Europe/London"
gc_maxlifetime: 1440
overrides: {}
opcache:
enable: 1
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/php-cli/templates/php.cli.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ session.gc_divisor = 1000
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
; http://php.net/session.gc-maxlifetime
session.gc_maxlifetime = 1440
session.gc_maxlifetime = {{ php.cli.gc_maxlifetime }}

; NOTE: If you are using the subdirectory option for storing session files
; (see session.save_path above), then garbage collection does *not*
Expand Down
1 change: 1 addition & 0 deletions roles/debian/php-fpm/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ php:
max_spare_servers: 3
process_idle_timeout: 10s
max_requests: 500
gc_maxlifetime: 1440
opcache:
enable: 1
enable_cli: 0
Expand Down
2 changes: 1 addition & 1 deletion roles/debian/php-fpm/templates/php.fpm.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ session.gc_divisor = 1000
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
; http://php.net/session.gc-maxlifetime
session.gc_maxlifetime = 1440
session.gc_maxlifetime = {{ php.fpm.gc_maxlifetime }}

; NOTE: If you are using the subdirectory option for storing session files
; (see session.save_path above), then garbage collection does *not*
Expand Down