Skip to content

Commit

Permalink
update files to generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
markosfount committed Feb 10, 2025
1 parent 9aeee34 commit bf9b46c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Configuration-based authentication
provider "panther" {
token = ""
url = "https://api.<panther-instance-url>/public/graphql"
url = "https://<panther-instance-url>"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Manage Http Log Source integration
resource "panther_http_source" "example_http_source" {
resource "panther_httpsource" "example_http_source" {
integration_label = ""
log_stream_type = "JSON"
log_types = ""
Expand Down
4 changes: 2 additions & 2 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ func (p *PantherProvider) Schema(ctx context.Context, req provider.SchemaRequest
resp.Schema = schema.Schema{
Attributes: map[string]schema.Attribute{
"url": schema.StringAttribute{
Description: "The GraphQL API URL for the target Panther instance.",
Description: "The API URL for the target Panther instance.",
Optional: true,
},
"token": schema.StringAttribute{
Description: "The API token for the Panther GraphQL API.",
Description: "The API token for the Panther API.",
Optional: true,
Sensitive: true,
},
Expand Down

0 comments on commit bf9b46c

Please sign in to comment.