You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/configs/testdata/valid-modules/with-mocks/main.tf

20 lines
285 B

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"
}