-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move bucket creation out of liberator module (#1498)
* move bucket creation back to db-snapshot-to-s3 module * Revert "move bucket creation back to db-snapshot-to-s3 module" This reverts commit 7325d3c. * recreate liberator_db_snapshot_to_s3 module add bucket creation back to db-snapshot-to-s3 module remove associated bucket from core * move bucket from liberator_db_snapshot_to_s3 to seperate resource
- Loading branch information
1 parent
e6d6155
commit d5dabac
Showing
2 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1 @@ | ||
module "rds_export_storage" { | ||
source = "../s3-bucket" | ||
|
||
tags = var.tags | ||
project = var.project | ||
environment = var.environment | ||
identifier_prefix = var.identifier_prefix | ||
bucket_name = "RDS Export Storage" | ||
bucket_identifier = "rds-export-storage${var.aws_account_suffix}" | ||
role_arns_to_share_access_with = [ | ||
aws_iam_role.rds_snapshot_to_s3_lambda.arn | ||
] | ||
} |