Skip to content

Commit

Permalink
Merge pull request #5 from Resourcely-Inc/update/provider
Browse files Browse the repository at this point in the history
add provider example to the scaffolding
  • Loading branch information
alaamub authored Feb 23, 2024
2 parents 9c15835 + 9fe5c33 commit 1dfd358
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# main.tf

resource "null_resource" "foo" {
triggers = { "foo": "bar" }
triggers = { "foo" : "bar" }
}
18 changes: 18 additions & 0 deletions provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// 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 "<foo>" {
// ...
// }

// # Example:
// provider "aws" {
// region = "us-east-1"
//
// }

// provider "github" {}

// provider "google" {}

0 comments on commit 1dfd358

Please sign in to comment.