superlint/test/linters/terraform_tflint/good/terraform_tflint_good_2.tf
Marco Ferrari e6cf8d3845
Move tests to the test directory (#4985)
* Move tests to the test directory

* Fix linting errors

* Add states back

* Add xml back
2023-12-15 08:50:35 +00:00

10 lines
194 B
HCL

module "s3_bucket" {
source = "terraform-aws-modules/s3-bucket/aws"
version = "2.11.1"
bucket = "test-bucket"
}
module "good_relative_reference" {
source = "../modules/ec2_instance"
}