1234567891011121314151617181920212223242526 |
- # -------------
- # S3 Bucket
- # -------------
- resource "aws_s3_bucket" "bucket" {
- bucket = "nuxeo-${var.cust_id}"
- acl = "private"
- tags {
- Name = "nuxeo-${var.cust_id}"
- billing-category = "customers"
- billing-subcategory = "${var.stack_name}"
- role = "nuxeo.aws-s3"
- }
- }
- resource "aws_s3_bucket" "bucket_backup" {
- bucket = "nuxeo-backup-${var.cust_id}"
- acl = "private"
- tags {
- Name = "nuxeo-backup-${var.cust_id}"
- billing-category = "customers"
- billing-subcategory = "${var.stack_name}"
- role = "nuxeo.aws-s3"
- }
- }
|