I have a terraform resource that looks like the following
resource "aws_instance" "web" {
ami = "ami-408c7f28"
tags = { Name = "hello World"}
}
I want to override it to remove the tags and have it look like this
resource "aws_instance" "web" {
ami = "ami-408c7f28"
}
Basically removing the tags.
Is there a way to do this in an override file as described here? https://www.terraform.io/docs/providers/aws/r/instance.html
The above is an example. In general I really want to know if I can remove a property in an override.