An unused variable and an unused data source
The data source is the expensive one: an API call on every plan for nothing
variable "unused" {
type = string
}
data "aws_ami" "ubuntu" {
most_recent = true
}
resource "aws_s3_bucket" "logs" {
bucket = "my-logs"
}