# Google Cloud Pub/Sub Module This module allows managing a single Pub/Sub topic, including multiple subscriptions and IAM bindings at the topic and subscriptions levels. ## Examples ### Simple topic with IAM ```hcl module "pubsub" { source = "./fabric/modules/pubsub" project_id = "my-project" name = "my-topic" iam = { "roles/pubsub.viewer" = ["group:foo@example.com"] "roles/pubsub.subscriber" = ["user:user1@example.com"] } } # tftest modules=1 resources=3 ``` ### Subscriptions Subscriptions are defined with the `subscriptions` variable, allowing optional configuration of per-subscription defaults. Push subscriptions need extra configuration, shown in the following example. ```hcl module "pubsub" { source = "./fabric/modules/pubsub" project_id = "my-project" name = "my-topic" subscriptions = { test-pull = null test-pull-override = { labels = { test = "override" } options = { ack_deadline_seconds = null message_retention_duration = null retain_acked_messages = true expiration_policy_ttl = null filter = null } } } } # tftest modules=1 resources=3 ``` ### Push subscriptions Push subscriptions need extra configuration in the `push_configs` variable. ```hcl module "pubsub" { source = "./fabric/modules/pubsub" project_id = "my-project" name = "my-topic" subscriptions = { test-push = null } push_configs = { test-push = { endpoint = "https://example.com/foo" attributes = null oidc_token = null } } } # tftest modules=1 resources=2 ``` ### Subscriptions with IAM ```hcl module "pubsub" { source = "./fabric/modules/pubsub" project_id = "my-project" name = "my-topic" subscriptions = { test-1 = null test-1 = null } subscription_iam = { test-1 = { "roles/pubsub.subscriber" = ["user:user1@ludomagno.net"] } } } # tftest modules=1 resources=3 ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L68) | PubSub topic name. | string | ✓ | | | [project_id](variables.tf#L73) | Project used for resources. | string | ✓ | | | [dead_letter_configs](variables.tf#L17) | Per-subscription dead letter policy configuration. | map(object({…})) | | {} | | [defaults](variables.tf#L26) | Subscription defaults for options. | object({…}) | | {…} | | [iam](variables.tf#L44) | IAM bindings for topic in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | | [kms_key](variables.tf#L50) | KMS customer managed encryption key. | string | | null | | [labels](variables.tf#L56) | Labels. | map(string) | | {} | | [message_retention_duration](variables.tf#L62) | Minimum duration to retain a message after it is published to the topic. | string | | null | | [push_configs](variables.tf#L78) | Push subscription configurations. | map(object({…})) | | {} | | [regions](variables.tf#L91) | List of regions used to set persistence policy. | list(string) | | [] | | [subscription_iam](variables.tf#L97) | IAM bindings for subscriptions in {SUBSCRIPTION => {ROLE => [MEMBERS]}} format. | map(map(list(string))) | | {} | | [subscriptions](variables.tf#L103) | Topic subscriptions. Also define push configs for push subscriptions. If options is set to null subscription defaults will be used. Labels default to topic labels if set to null. | map(object({…})) | | {} | ## Outputs | name | description | sensitive | |---|---|:---:| | [id](outputs.tf#L17) | Topic id. | | | [subscription_id](outputs.tf#L25) | Subscription ids. | | | [subscriptions](outputs.tf#L35) | Subscription resources. | | | [topic](outputs.tf#L43) | Topic resource. | |