From 51bf03c92857048bfceb32678e811e616a7f339e Mon Sep 17 00:00:00 2001 From: IA Automator Date: Tue, 8 Jul 2025 16:16:52 +0000 Subject: [PATCH] (automated) Updates from project type --- .copier-answers.yml | 2 +- examples/basic/main.tf | 5 +++++ examples/basic/outputs.tf | 0 examples/basic/providers.tf | 21 +++++++++++++++++++++ examples/basic/variables.tf | 0 main.tf | 0 6 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 examples/basic/main.tf create mode 100644 examples/basic/outputs.tf create mode 100644 examples/basic/providers.tf create mode 100644 examples/basic/variables.tf create mode 100644 main.tf diff --git a/.copier-answers.yml b/.copier-answers.yml index 97a8a4e..417f1d3 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/03516700-f6d3-11ee-9bbb-8a2997f1e5e3/projecttype +_src_path: /task/e90d1a85-5c16-11f0-bc4d-9eca2acd8328/projecttype starting_version: v0.0.0 version_file: VERSION 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