Merge pull request #1040 from VictorCavalcanteLG/patch-1

Fix name in google_pubsub_schema resource
This commit is contained in:
Julio Castillo 2022-12-08 18:25:35 +01:00 committed by GitHub
commit a5d4a58195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ locals {
resource "google_pubsub_schema" "default" {
count = var.schema == null ? 0 : 1
name = "{$var.name}-schema"
name = "${var.name}-schema"
type = var.schema.schema_type
definition = var.schema.definition
project = var.project_id