Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wai-wong-edb committed Aug 22, 2024
1 parent 13c129d commit 0218d20
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/resources/biganimal_region/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "<ex-tag-name-2>"
tag_name = "<ex-tag-name-2>"
},
]
}
Expand Down

0 comments on commit 0218d20

Please sign in to comment.