40 lines
739 B
Markdown
40 lines
739 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
|
|
|
|
## Import
|
|
|
|
Import is supported using the following syntax:
|
|
|
|
```shell
|
|
terraform import scaffolding_example.test "id-123"
|
|
```
|