Fix var.name in schema resource

This commit is contained in:
Victor Cavalcante 2022-12-07 13:19:02 -03:00 committed by GitHub
parent e57e00de6c
commit f19d46841d
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