From 486cdb1d5b9be1eb01bd78ce0dc2d70e655ce0d9 Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:39:34 +0800 Subject: [PATCH] remove remnants of the template --- README.md | 10 ++++------ test/main.tf | 8 -------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e8fa4a1..c5786a7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This module is used to create a VPC along with the necessary configuration to be useful. It was previously published at -https://github.com/silinternational/terraform-modules/aws/vpc. +https://github.com/silinternational/terraform-modules/tree/main/aws/vpc. ## What this does @@ -17,13 +17,11 @@ This module is published in [Terraform Registry](https://registry.terraform.io/m ## Usage Example -TODO: Update the following as a simple, brief representative sample of the module: - ```hcl module "this" { - source = "github.com/silinternational/terraform-modules//aws/vpc" - app_name = var.app_name - aws_zones = var.aws_zones + source = "github.com/silinternational/terraform-modules//aws/vpc" + app_name = var.app_name + aws_zones = var.aws_zones } provider "aws" { diff --git a/test/main.tf b/test/main.tf index b3c16d0..2e1743c 100644 --- a/test/main.tf +++ b/test/main.tf @@ -1,12 +1,4 @@ -/* - * TODO: complete these basic instantiations of the module, with the base purpose of - * validating the syntax of module code automatically when pushed to version control. - * One instance should use the minimum allowable set of inputs. The other should have - * the full complement of inputs. You may also wish to include module outputs to - * enforce the presence of module outputs. - */ - module "minimal" { source = "../" }