blob: 572c350aabf53c3d7d9c9794271b4016806c1daa [file] [log] [blame] [edit]
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
}
}
}
resource "aws_instance" "first" {}
resource "aws_instance" "second" {}
resource "aws_instance" "third" {}
data "aws_secretsmanager_secret" "creds" {}
module "child" {
source = "./child"
}