Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
deanhuynh committed Oct 25, 2023
1 parent 5790713 commit 3145729
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/resources/reverse_etl_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ description: |-
## Example Usage

```terraform
# Configures a specific warehouse
resource "segment_source_tracking_plan_connection" "example" {
# Configures a specific Reverse ETL model
resource "segment_reverse_etl_model" "example" {
source_id = segment_source.javascript.id
name = "Example Reverse ETL model"
enabled = true
Expand Down Expand Up @@ -46,4 +46,4 @@ resource "segment_source_tracking_plan_connection" "example" {

### Read-Only

- `id` (String) The unique identifier for the subscription.
- `id` (String) The unique identifier for the model.
4 changes: 2 additions & 2 deletions examples/resources/segment_reverse_etl_model/resource.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configures a specific warehouse
resource "segment_source_tracking_plan_connection" "example" {
# Configures a specific Reverse ETL model
resource "segment_reverse_etl_model" "example" {
source_id = segment_source.javascript.id
name = "Example Reverse ETL model"
enabled = true
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/reverse_etl_model_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (r *reverseETLModelResource) Schema(_ context.Context, _ resource.SchemaReq
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Computed: true,
Description: "The unique identifier for the reverse etl model.",
Description: "The unique identifier for the model.",
PlanModifiers: []planmodifier.String{
stringplanmodifier.UseStateForUnknown(),
},
Expand Down

0 comments on commit 3145729

Please sign in to comment.