Skip to content

Commit

Permalink
fixing data source
Browse files Browse the repository at this point in the history
  • Loading branch information
RajBaviskar committed Jun 7, 2023
1 parent b25e2f7 commit f8e2853
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions internal/service/platform/connector/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ func ResourceConnectorGithub() *schema.Resource {
Description: "Execute on delegate or not.",
Type: schema.TypeBool,
Optional: true,
Default: true,
},
"api_authentication": {
Description: "Configuration for using the github api. API Access is required for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.",
Expand Down
5 changes: 5 additions & 0 deletions internal/service/platform/connector/github_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ func DatasourceConnectorGithub() *schema.Resource {
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
},
"execute_on_delegate": {
Description: "Execute on delegate or not.",
Type: schema.TypeBool,
Computed: true,
},
"api_authentication": {
Description: "Configuration for using the github api. API Access is Computed for using “Git Experience”, for creation of Git based triggers, Webhooks management and updating Git statuses.",
Type: schema.TypeList,
Expand Down

0 comments on commit f8e2853

Please sign in to comment.