From 45d24225325e44ec1ee360ac4b98db8c85367339 Mon Sep 17 00:00:00 2001 From: Aladdin Almubayed Date: Fri, 23 Feb 2024 10:19:15 -0800 Subject: [PATCH 1/3] add provider example to the scaffolding --- provider.tf | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 provider.tf diff --git a/provider.tf b/provider.tf new file mode 100644 index 0000000..6b3d100 --- /dev/null +++ b/provider.tf @@ -0,0 +1,21 @@ +// Configure the provider(s) for your cloud platform(s). +// +// See https://registry.terraform.io/browse/providers for a full list +// of supported providers and configuration instructions. +// +// provider "" { +// ... +// } + +// # Example: +// provider "aws" { +// region = "us-east-1" +// +// skip_credentials_validation = true +// skip_metadata_api_check = true +// skip_requesting_account_id = true +// } + +// provider "github" {} + +// provider "google" {} \ No newline at end of file From b69fd028e4c4a7b7ca3714158b394858f2458367 Mon Sep 17 00:00:00 2001 From: Aladdin Almubayed Date: Fri, 23 Feb 2024 10:20:00 -0800 Subject: [PATCH 2/3] fmt --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index b4bc795..1553f38 100644 --- a/main.tf +++ b/main.tf @@ -1,5 +1,5 @@ # main.tf resource "null_resource" "foo" { - triggers = { "foo": "bar" } + triggers = { "foo" : "bar" } } From 9fe5c336d11a7d1a627b05f32037c864f8fe3c01 Mon Sep 17 00:00:00 2001 From: Aladdin Almubayed Date: Fri, 23 Feb 2024 10:24:41 -0800 Subject: [PATCH 3/3] update --- provider.tf | 3 --- 1 file changed, 3 deletions(-) diff --git a/provider.tf b/provider.tf index 6b3d100..1e9af16 100644 --- a/provider.tf +++ b/provider.tf @@ -11,9 +11,6 @@ // provider "aws" { // region = "us-east-1" // -// skip_credentials_validation = true -// skip_metadata_api_check = true -// skip_requesting_account_id = true // } // provider "github" {}