Skip to content

Commit

Permalink
Create persistent buckets for openscapes in terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 committed Mar 22, 2024
1 parent 4068334 commit a470f86
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions terraform/aws/projects/openscapes.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,29 @@ user_buckets = {
},
"prod-homedirs-archive" : {
"archival_storageclass_after" : 3
},
"persistent-staging" : {
"delete_after" : null
},
"persistent" : {
"delete_after" : null
}
}


hub_cloud_permissions = {
"staging" : {
bucket_admin_access : ["scratch-staging"],
bucket_admin_access : [
"scratch-staging",
"persistent-staging"
],
extra_iam_policy : ""
},
"prod" : {
bucket_admin_access : ["scratch"],
bucket_admin_access : [
"scratch",
"persistent"
],
extra_iam_policy : ""
},
}

0 comments on commit a470f86

Please sign in to comment.