Skip to content

Commit

Permalink
Merge pull request #1 from env0/shlomp/first_step
Browse files Browse the repository at this point in the history
First version for the provider, supports templates and variables
  • Loading branch information
avnerenv0 committed Apr 19, 2021
2 parents b5eb893 + e03702d commit 5f5a540
Show file tree
Hide file tree
Showing 44 changed files with 3,220 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@

# Dependency directories (remove the comment below to include it)
# vendor/
*.sw?
terraform-provider-env0
attic
64 changes: 64 additions & 0 deletions .vscode/Markdown.code-snippets
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"Data source": {
"prefix": "dat",
"body": [
"### `${1}` data source",
"",
"$0",
"",
"#### Example usage",
"",
"```terraform",
"data \"$1\" \"$1\" {",
"}",
"```",
"",
"#### Argument reference",
"",
"The following arguments are supported:",
"",
"- `name` - (Required) - Name ;",
"",
"#### Attributes reference",
"",
"In addition to all arguments above, the following attributes are exported:",
"",
"- `name` - The name of the organization;",
"",
"[^ Back to all resources](#resources)",
""
],
"description": "Terraform data source documentation"
},
"Resource": {
"prefix": "res",
"body": [
"### `${1}` resource",
"",
"$0",
"",
"#### Example usage",
"",
"```terraform",
"resource \"$1\" \"$1\" {",
"}",
"```",
"",
"#### Argument reference",
"",
"The following arguments are supported:",
"",
"- `name` - (Required) - Name ;",
"",
"#### Attributes reference",
"",
"In addition to all arguments above, the following attributes are exported:",
"",
"- `name` - The name of the organization;",
"",
"[^ Back to all resources](#resources)",
""
],
"description": "Terraform resource documentation"
},
}
Loading

0 comments on commit 5f5a540

Please sign in to comment.