mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-15 17:52:26 -05:00
17 lines
410 B
HCL
17 lines
410 B
HCL
locals {
|
|
s3_service_name = "notify-terraform-state"
|
|
}
|
|
|
|
module "s3" {
|
|
source = "github.com/18f/terraform-cloudgov//s3?ref=v0.9.1"
|
|
|
|
cf_org_name = "gsa-tts-benefits-studio"
|
|
cf_space_name = "notify-management"
|
|
name = local.s3_service_name
|
|
}
|
|
|
|
resource "cloudfoundry_service_key" "bucket_creds" {
|
|
name = "${local.s3_service_name}-access"
|
|
service_instance = module.s3.bucket_id
|
|
}
|