
Reference: https://developer.hashicorp.com/terraform/plugin/framework/functions Reference: https://github.com/hashicorp/terraform-providers-devex-internal/issues/175 Terraform 1.8 and later introduce the concept of provider-defined functions and this adds an example function that accepts a string argument and returns the same value as a string return. Dependencies updated via: ``` go get github.com/hashicorp/terraform-plugin-framework@v1.6.0 go get github.com/hashicorp/terraform-plugin-docs@v0.18.0 go mod tidy ```
32 lines
614 B
Markdown
32 lines
614 B
Markdown
---
|
|
# 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
|