From df438b3fdc0600f9628abf78c8bae8e5b2be3882 Mon Sep 17 00:00:00 2001 From: "PC-2NR0VQ3\\wai.wong" Date: Thu, 22 Aug 2024 17:09:39 +0100 Subject: [PATCH] fix: lint errors --- examples/resources/biganimal_region/resource.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/resources/biganimal_region/resource.tf b/examples/resources/biganimal_region/resource.tf index 7bb1c199..8a8b6cd8 100644 --- a/examples/resources/biganimal_region/resource.tf +++ b/examples/resources/biganimal_region/resource.tf @@ -15,15 +15,15 @@ variable "project_id" { resource "biganimal_region" "this" { cloud_provider = "aws" region_id = "eu-west-1" - project_id = "prj_abc01234567" + project_id = var.project_id tags = [ { - tag_name = "test" - color = "blue" + tag_name = "test" + color = "blue" }, { - tag_name = "" + tag_name = "" }, ] }