# Google Cloud Storage Module ## Example ```hcl module "bucket" { source = "./modules/gcs" project_id = "myproject" prefix = "test" name = "my-bucket" iam = { "roles/storage.admin" = ["group:storage@example.com"] } } # tftest modules=1 resources=2 ``` ### Example with Cloud KMS ```hcl module "bucket" { source = "./modules/gcs" project_id = "myproject" prefix = "test" name = "my-bucket" iam = { "roles/storage.admin" = ["group:storage@example.com"] } encryption_key = "my-encryption-key" } # tftest modules=1 resources=2 ``` ### Example with retention policy ```hcl module "bucket" { source = "./modules/gcs" project_id = "myproject" prefix = "test" name = "my-bucket" iam = { "roles/storage.admin" = ["group:storage@example.com"] } retention_policy = { retention_period = 100 is_locked = true } logging_config = { log_bucket = var.bucket log_object_prefix = null } } # tftest modules=1 resources=2 ``` ### Example with lifecycle rule ```hcl module "bucket" { source = "./modules/gcs" project_id = "myproject" prefix = "test" name = "my-bucket" iam = { "roles/storage.admin" = ["group:storage@example.com"] } lifecycle_rule = { action = { type = "SetStorageClass" storage_class = "STANDARD" } condition = { age = 30 created_before = null with_state = null matches_storage_class = null num_newer_versions = null custom_time_before = null days_since_custom_time = null days_since_noncurrent_time = null noncurrent_time_before = null } } } # tftest modules=1 resources=2 ``` ### Minimal example with GCS notifications ```hcl module "bucket-gcs-notification" { source = "./modules/gcs" project_id = "myproject" prefix = "test" name = "my-bucket" notification_config = { enabled = true payload_format = "JSON_API_V1" sa_email = "service-@gs-project-accounts.iam.gserviceaccount.com" # GCS SA email must be passed or fetched from projects module. topic_name = "gcs-notification-topic" event_types = ["OBJECT_FINALIZE"] custom_attributes = {} } } # tftest modules=1 resources=4 ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L89) | Bucket name suffix. | string | ✓ | | | [project_id](variables.tf#L112) | Bucket project id. | string | ✓ | | | [cors](variables.tf#L17) | CORS configuration for the bucket. Defaults to null. | object({…}) | | null | | [encryption_key](variables.tf#L28) | KMS key that will be used for encryption. | string | | null | | [force_destroy](variables.tf#L34) | Optional map to set force destroy keyed by name, defaults to false. | bool | | false | | [iam](variables.tf#L40) | IAM bindings in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | | [labels](variables.tf#L46) | Labels to be attached to all buckets. | map(string) | | {} | | [lifecycle_rule](variables.tf#L52) | Bucket lifecycle rule. | object({…}) | | null | | [location](variables.tf#L74) | Bucket location. | string | | "EU" | | [logging_config](variables.tf#L80) | Bucket logging configuration. | object({…}) | | null | | [notification_config](variables.tf#L94) | GCS Notification configuration. | object({…}) | | null | | [prefix](variables.tf#L106) | Prefix used to generate the bucket name. | string | | null | | [retention_policy](variables.tf#L117) | Bucket retention policy. | object({…}) | | null | | [storage_class](variables.tf#L126) | Bucket storage class. | string | | "MULTI_REGIONAL" | | [uniform_bucket_level_access](variables.tf#L136) | Allow using object ACLs (false) or not (true, this is the recommended behavior) , defaults to true (which is the recommended practice, but not the behavior of storage API). | bool | | true | | [versioning](variables.tf#L142) | Enable versioning, defaults to false. | bool | | false | | [website](variables.tf#L148) | Bucket website. | object({…}) | | null | ## Outputs | name | description | sensitive | |---|---|:---:| | [bucket](outputs.tf#L17) | Bucket resource. | | | [name](outputs.tf#L22) | Bucket name. | | | [notification](outputs.tf#L30) | GCS Notification self link. | | | [topic](outputs.tf#L34) | Topic ID used by GCS. | | | [url](outputs.tf#L38) | Bucket URL. | |