mirror of
https://github.com/coder/terraform-provider-envbuilder.git
synced 2025-11-03 11:08:59 +00:00
Initial commit
This commit is contained in:
commit
76d8aa974e
36 changed files with 1975 additions and 0 deletions
docs
30
docs/data-sources/example.md
Normal file
30
docs/data-sources/example.md
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "scaffolding_example Data Source - scaffolding"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
Example data source
|
||||
---
|
||||
|
||||
# scaffolding_example (Data Source)
|
||||
|
||||
Example data source
|
||||
|
||||
## Example Usage
|
||||
|
||||
```terraform
|
||||
data "scaffolding_example" "example" {
|
||||
configurable_attribute = "some-value"
|
||||
}
|
||||
```
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Optional
|
||||
|
||||
- `configurable_attribute` (String) Example configurable attribute
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Example identifier
|
||||
26
docs/functions/example.md
Normal file
26
docs/functions/example.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "example function - scaffolding"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
Example function
|
||||
---
|
||||
|
||||
# function: example
|
||||
|
||||
Echoes given argument as result
|
||||
|
||||
|
||||
|
||||
## Signature
|
||||
|
||||
<!-- signature generated by tfplugindocs -->
|
||||
```text
|
||||
example(input string) string
|
||||
```
|
||||
|
||||
## Arguments
|
||||
|
||||
<!-- arguments generated by tfplugindocs -->
|
||||
1. `input` (String) String to echo
|
||||
|
||||
26
docs/index.md
Normal file
26
docs/index.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "scaffolding Provider"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
|
||||
---
|
||||
|
||||
# scaffolding Provider
|
||||
|
||||
|
||||
|
||||
## Example Usage
|
||||
|
||||
```terraform
|
||||
provider "scaffolding" {
|
||||
# example configuration here
|
||||
}
|
||||
```
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Optional
|
||||
|
||||
- `endpoint` (String) Example provider attribute
|
||||
31
docs/resources/example.md
Normal file
31
docs/resources/example.md
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
# generated by https://github.com/hashicorp/terraform-plugin-docs
|
||||
page_title: "scaffolding_example Resource - scaffolding"
|
||||
subcategory: ""
|
||||
description: |-
|
||||
Example resource
|
||||
---
|
||||
|
||||
# scaffolding_example (Resource)
|
||||
|
||||
Example resource
|
||||
|
||||
## Example Usage
|
||||
|
||||
```terraform
|
||||
resource "scaffolding_example" "example" {
|
||||
configurable_attribute = "some-value"
|
||||
}
|
||||
```
|
||||
|
||||
<!-- schema generated by tfplugindocs -->
|
||||
## Schema
|
||||
|
||||
### Optional
|
||||
|
||||
- `configurable_attribute` (String) Example configurable attribute
|
||||
- `defaulted` (String) Example configurable attribute with default value
|
||||
|
||||
### Read-Only
|
||||
|
||||
- `id` (String) Example identifier
|
||||
Loading…
Add table
Add a link
Reference in a new issue