From efb142b8670bb3d8c5f918ff0f1ed1b7eac29c65 Mon Sep 17 00:00:00 2001 From: Vitaliy Kukharik <37010174+vitabaks@users.noreply.github.com> Date: Wed, 25 Sep 2024 13:32:40 +0300 Subject: [PATCH] Fix typo in aws_s3_bucket_name variable --- automation/roles/cloud-resources/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/roles/cloud-resources/defaults/main.yml b/automation/roles/cloud-resources/defaults/main.yml index c7ce6c4b3..c42c54828 100644 --- a/automation/roles/cloud-resources/defaults/main.yml +++ b/automation/roles/cloud-resources/defaults/main.yml @@ -36,7 +36,7 @@ cloud_load_balancer: true # Create a Load Balancer in the Cloud. # Backups (if 'pgbackrest_install' or 'wal_g_install' is 'true') aws_s3_bucket_create: true # if 'cloud_provider=aws' -aws_s3_bucket_name: "{{ patroni_cluster_name }}}-backup" # Name of the S3 bucket. Bucket naming rules: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html +aws_s3_bucket_name: "{{ patroni_cluster_name }}-backup" # Name of the S3 bucket. Bucket naming rules: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html aws_s3_bucket_region: "{{ server_location }}" # The AWS region to use. aws_s3_bucket_object_lock_enabled: false # Whether S3 Object Lock to be enabled. aws_s3_bucket_encryption: "AES256" # Describes the default server-side encryption to apply to new objects in the bucket. Choices: "AES256", "aws:kms"