File tree 5 files changed +8
-0
lines changed
generated/team/project_data
components/resources/pubsub_topics
5 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 211
211
| pubsub_topics.push_subscriptions.ack_deadline_seconds | Deadline to wait for acknowledgement. | integer | false | - | - |
212
212
| pubsub_topics.push_subscriptions.name | Name of subscription. | string | true | - | - |
213
213
| pubsub_topics.push_subscriptions.push_endpoint | Name of endpoint to push to. | string | false | - | - |
214
+ | pubsub_topics.topic_message_retention_duration | Message retention duration in seconds. | string | false | - | - |
214
215
| secrets | [ Module] ( https://www.terraform.io/docs/providers/google/r/secret_manager_secret.html ) | array() | false | - | - |
215
216
| secrets.resource_name | Override for Terraform resource name. If unset, defaults to normalized secret_id. Normalization will make all characters alphanumeric with underscores. | string | false | - | - |
216
217
| secrets.secret_data | Data of the secret. If unset, should be manually set in the GCP console. | string | false | - | - |
Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ module "topic" {
245
245
push_endpoint = " https://example.com"
246
246
},
247
247
]
248
+ topic_message_retention_duration = " 86400s"
248
249
depends_on = [
249
250
module . project
250
251
]
Original file line number Diff line number Diff line change @@ -497,6 +497,7 @@ template "project_data" {
497
497
name = " pull-subscription"
498
498
}
499
499
]
500
+ topic_message_retention_duration = " 86400s"
500
501
}]
501
502
}
502
503
terraform_addons = {
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ module "{{resourceName . "name"}}" {
30
30
31
31
{{hclField . " pull_subscriptions" - }}
32
32
{{hclField . " push_subscriptions" - }}
33
+ {{hclField . " topic_message_retention_duration" - }}
33
34
34
35
depends_on = [
35
36
module.project
Original file line number Diff line number Diff line change @@ -1140,6 +1140,10 @@ schema = {
1140
1140
description = " Name of the topic."
1141
1141
type = " string"
1142
1142
}
1143
+ topic_message_retention_duration = {
1144
+ description = " Message retention duration in seconds."
1145
+ type = " string"
1146
+ }
1143
1147
labels = {
1144
1148
description = " Labels to set on the topic."
1145
1149
type = " object"
You can’t perform that action at this time.
0 commit comments