Skip to content

Commit

Permalink
Running go generate ./...
Browse files Browse the repository at this point in the history
  • Loading branch information
hendoxc committed Mar 4, 2024
1 parent e562647 commit bc79994
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 72 deletions.
30 changes: 0 additions & 30 deletions docs/data-sources/scaffolding_example.md

This file was deleted.

8 changes: 4 additions & 4 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "scaffolding-framework Provider"
page_title: "pinot Provider"
subcategory: ""
description: |-
---

# scaffolding-framework Provider
# pinot Provider



Expand All @@ -21,6 +21,6 @@ provider "scaffolding" {
<!-- schema generated by tfplugindocs -->
## Schema

### Optional
### Required

- `endpoint` (String) Example provider attribute
- `controller_url` (String) The URL of the Pinot controller.
31 changes: 0 additions & 31 deletions docs/resources/scaffolding_example.md

This file was deleted.

4 changes: 2 additions & 2 deletions examples/table_schema/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ terraform {


provider "pinot" {
controller_url = "http://localhost:9000"
controller_url = "http://localhost:9000"
}

resource "pinot_schema" "block_schema" {
schema_name = "ethereum_block_headers"
schema = file("block_schema.json")
schema = file("block_schema.json")
}
10 changes: 5 additions & 5 deletions examples/users/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ terraform {
}

provider "pinot" {
controller_url = "http://localhost:9000"
controller_url = "http://localhost:9000"
}

resource "pinot_user" "test" {
username = "test"
password = "password"
component = "BROKER"
role = "ADMIN"
username = "test"
password = "password"
component = "BROKER"
role = "ADMIN"
}

data "pinot_users" "edu" {}
Expand Down

0 comments on commit bc79994

Please sign in to comment.