Merge branch 'master' into apigee-module-fix-try

This commit is contained in:
apichick 2023-09-29 17:01:01 +02:00 committed by GitHub
commit 0ecd223038
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -77,6 +77,14 @@ resource "google_pubsub_subscription" "default" {
}
}
dynamic "retry_policy" {
for_each = each.value.retry_policy == null ? [] : [""]
content {
maximum_backoff = each.value.retry_policy.maximum_backoff
minimum_backoff = each.value.retry_policy.minimum_backoff
}
}
dynamic "push_config" {
for_each = each.value.push == null ? [] : [""]
content {