github.com/terraform-linters/tflint@v0.51.2-0.20240520175844-3750771571b6/integrationtest/inspection/map-attribute/template.tf (about)

     1  resource "aws_instance" "intance" {
     2    tags = { foo = "bar" }
     3  }
     4  
     5  variable "sensitive" {
     6    sensitive = true
     7    default   = "sensitive"
     8  }
     9  
    10  resource "aws_instance" "sensitive" {
    11    tags = { foo = var.sensitive }
    12  }