diff --git a/.copier-answers.yml b/.copier-answers.yml
index ec9dff3..15c10ba 100644
--- a/.copier-answers.yml
+++ b/.copier-answers.yml
@@ -1,6 +1,6 @@
# This file is auto-generated, changes will be overwritten
_commit: v0.1.4
-_src_path: /task/f281c4e2-f68d-11ee-b0d0-1a8eb7bb45c9/projecttype
+_src_path: /task/e46ae8d7-5c16-11f0-bc4d-9eca2acd8328/projecttype
starting_version: v0.0.0
version_file: VERSION
diff --git a/examples/basic/.header.md b/examples/basic/.header.md
new file mode 100644
index 0000000..e69de29
diff --git a/examples/basic/README.md b/examples/basic/README.md
new file mode 100644
index 0000000..f53c234
--- /dev/null
+++ b/examples/basic/README.md
@@ -0,0 +1,29 @@
+
+## Requirements
+
+| Name | Version |
+|------|---------|
+| [terraform](#requirement\_terraform) | >= 0.14.0 |
+| [aws](#requirement\_aws) | >= 3.72.0 |
+| [awscc](#requirement\_awscc) | >= 0.11.0 |
+
+## Providers
+
+No providers.
+
+## Modules
+
+No modules.
+
+## Resources
+
+No resources.
+
+## Inputs
+
+No inputs.
+
+## Outputs
+
+No outputs.
+
\ No newline at end of file
diff --git a/examples/basic/main.tf b/examples/basic/main.tf
new file mode 100644
index 0000000..b2619ce
--- /dev/null
+++ b/examples/basic/main.tf
@@ -0,0 +1,5 @@
+#####################################################################################
+# Terraform module examples are meant to show an _example_ on how to use a module
+# per use-case. The code below should not be copied directly but referenced in order
+# to build your own root module that invokes this module
+#####################################################################################
diff --git a/examples/basic/outputs.tf b/examples/basic/outputs.tf
new file mode 100644
index 0000000..e69de29
diff --git a/examples/basic/providers.tf b/examples/basic/providers.tf
new file mode 100644
index 0000000..0f413cb
--- /dev/null
+++ b/examples/basic/providers.tf
@@ -0,0 +1,21 @@
+terraform {
+ required_version = ">= 0.14.0"
+ required_providers {
+ aws = {
+ source = "hashicorp/aws"
+ version = ">= 3.72.0"
+ }
+ awscc = {
+ source = "hashicorp/awscc"
+ version = ">= 0.11.0"
+ }
+ }
+}
+
+provider "awscc" {
+ user_agent = [{
+ product_name = "terraform-awscc-"
+ product_version = "0.0.1"
+ comment = "V1/AWS-D69B4015/"
+ }]
+}
diff --git a/examples/basic/variables.tf b/examples/basic/variables.tf
new file mode 100644
index 0000000..e69de29
diff --git a/main.tf b/main.tf
new file mode 100644
index 0000000..e69de29