From fc65422a5d3f60588cae1aae1a91bd2676c1103a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 20 Jun 2022 22:13:48 +0000 Subject: [PATCH] chore(deps): update terraform cloudposse/backup/aws to v0.13.1 (#77) * chore(deps): update terraform cloudposse/backup/aws to v0.7.0 * Auto Format * Update versions.tf * Update versions.tf * Auto Format * Update main.tf * Auto Format * Remove unused output * Auto Format * Update outputs.tf Co-authored-by: Renovate Bot Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> Co-authored-by: nitrocode <7775707+nitrocode@users.noreply.github.com> --- README.md | 7 +------ docs/terraform.md | 7 +------ examples/complete/outputs.tf | 5 ----- examples/complete/versions.tf | 16 ---------------- main.tf | 2 +- outputs.tf | 5 ----- versions.tf | 16 ---------------- 7 files changed, 3 insertions(+), 55 deletions(-) diff --git a/README.md b/README.md index 733a39c..aabcd12 100644 --- a/README.md +++ b/README.md @@ -233,10 +233,6 @@ Available targets: |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.0 | | [aws](#requirement\_aws) | >= 2.0 | -| [local](#requirement\_local) | >= 1.2 | -| [null](#requirement\_null) | >= 2.0 | -| [random](#requirement\_random) | >= 2.0 | -| [template](#requirement\_template) | >= 2.0 | ## Providers @@ -251,7 +247,7 @@ Available targets: | [cicd](#module\_cicd) | cloudposse/cicd/aws | 0.12.0 | | [ecr](#module\_ecr) | cloudposse/ecr/aws | 0.34.0 | | [efs](#module\_efs) | cloudposse/efs/aws | 0.25.0 | -| [efs\_backup](#module\_efs\_backup) | cloudposse/backup/aws | 0.6.1 | +| [efs\_backup](#module\_efs\_backup) | cloudposse/backup/aws | 0.13.1 | | [elastic\_beanstalk\_application](#module\_elastic\_beanstalk\_application) | cloudposse/elastic-beanstalk-application/aws | 0.11.1 | | [elastic\_beanstalk\_environment](#module\_elastic\_beanstalk\_environment) | cloudposse/elastic-beanstalk-environment/aws | 0.36.1 | | [label\_slaves](#module\_label\_slaves) | cloudposse/label/null | 0.25.0 | @@ -345,7 +341,6 @@ Available targets: | [efs\_backup\_selection\_id](#output\_efs\_backup\_selection\_id) | Backup Selection ID | | [efs\_backup\_vault\_arn](#output\_efs\_backup\_vault\_arn) | Backup Vault ARN | | [efs\_backup\_vault\_id](#output\_efs\_backup\_vault\_id) | Backup Vault ID | -| [efs\_backup\_vault\_recovery\_points](#output\_efs\_backup\_vault\_recovery\_points) | Backup Vault recovery points | | [efs\_dns\_name](#output\_efs\_dns\_name) | EFS DNS name | | [efs\_host](#output\_efs\_host) | Route53 DNS hostname for the EFS | | [efs\_id](#output\_efs\_id) | EFS ID | diff --git a/docs/terraform.md b/docs/terraform.md index f6dbf10..28b16b7 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -5,10 +5,6 @@ |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.0 | | [aws](#requirement\_aws) | >= 2.0 | -| [local](#requirement\_local) | >= 1.2 | -| [null](#requirement\_null) | >= 2.0 | -| [random](#requirement\_random) | >= 2.0 | -| [template](#requirement\_template) | >= 2.0 | ## Providers @@ -23,7 +19,7 @@ | [cicd](#module\_cicd) | cloudposse/cicd/aws | 0.12.0 | | [ecr](#module\_ecr) | cloudposse/ecr/aws | 0.34.0 | | [efs](#module\_efs) | cloudposse/efs/aws | 0.25.0 | -| [efs\_backup](#module\_efs\_backup) | cloudposse/backup/aws | 0.6.1 | +| [efs\_backup](#module\_efs\_backup) | cloudposse/backup/aws | 0.13.1 | | [elastic\_beanstalk\_application](#module\_elastic\_beanstalk\_application) | cloudposse/elastic-beanstalk-application/aws | 0.11.1 | | [elastic\_beanstalk\_environment](#module\_elastic\_beanstalk\_environment) | cloudposse/elastic-beanstalk-environment/aws | 0.36.1 | | [label\_slaves](#module\_label\_slaves) | cloudposse/label/null | 0.25.0 | @@ -117,7 +113,6 @@ | [efs\_backup\_selection\_id](#output\_efs\_backup\_selection\_id) | Backup Selection ID | | [efs\_backup\_vault\_arn](#output\_efs\_backup\_vault\_arn) | Backup Vault ARN | | [efs\_backup\_vault\_id](#output\_efs\_backup\_vault\_id) | Backup Vault ID | -| [efs\_backup\_vault\_recovery\_points](#output\_efs\_backup\_vault\_recovery\_points) | Backup Vault recovery points | | [efs\_dns\_name](#output\_efs\_dns\_name) | EFS DNS name | | [efs\_host](#output\_efs\_host) | Route53 DNS hostname for the EFS | | [efs\_id](#output\_efs\_id) | EFS ID | diff --git a/examples/complete/outputs.tf b/examples/complete/outputs.tf index ecbc146..50f9757 100644 --- a/examples/complete/outputs.tf +++ b/examples/complete/outputs.tf @@ -208,11 +208,6 @@ output "efs_backup_vault_arn" { description = "Backup Vault ARN" } -output "efs_backup_vault_recovery_points" { - value = module.jenkins.efs_backup_vault_recovery_points - description = "Backup Vault recovery points" -} - output "efs_backup_plan_arn" { value = module.jenkins.efs_backup_plan_arn description = "Backup Plan ARN" diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf index d50205e..5b2c49b 100644 --- a/examples/complete/versions.tf +++ b/examples/complete/versions.tf @@ -6,21 +6,5 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - local = { - source = "hashicorp/local" - version = ">= 1.2" - } - null = { - source = "hashicorp/null" - version = ">= 2.0" - } - random = { - source = "hashicorp/random" - version = ">= 2.0" - } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } } } diff --git a/main.tf b/main.tf index 12202ad..6ebb319 100644 --- a/main.tf +++ b/main.tf @@ -88,7 +88,7 @@ module "efs" { # EFS backup module "efs_backup" { source = "cloudposse/backup/aws" - version = "0.6.1" + version = "0.13.1" attributes = ["efs"] backup_resources = [module.efs.arn] schedule = var.efs_backup_schedule diff --git a/outputs.tf b/outputs.tf index e4f3720..9d7b5aa 100644 --- a/outputs.tf +++ b/outputs.tf @@ -198,11 +198,6 @@ output "efs_backup_vault_arn" { description = "Backup Vault ARN" } -output "efs_backup_vault_recovery_points" { - value = module.efs_backup.backup_vault_recovery_points - description = "Backup Vault recovery points" -} - output "efs_backup_plan_arn" { value = module.efs_backup.backup_plan_arn description = "Backup Plan ARN" diff --git a/versions.tf b/versions.tf index d50205e..5b2c49b 100644 --- a/versions.tf +++ b/versions.tf @@ -6,21 +6,5 @@ terraform { source = "hashicorp/aws" version = ">= 2.0" } - local = { - source = "hashicorp/local" - version = ">= 1.2" - } - null = { - source = "hashicorp/null" - version = ">= 2.0" - } - random = { - source = "hashicorp/random" - version = ">= 2.0" - } - template = { - source = "hashicorp/template" - version = ">= 2.0" - } } }