Skip to content

Commit

Permalink
ssl + bump to 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Jun 26, 2023
1 parent e453a4d commit 1d8c1db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ provider "airflow" {
- `oauth2_token` - (Optional) An OAUTH2 identity token used to authenticate against an Airflow server. **Conflicts with username and password**
- `username` - (Optional) The username to use for API basic authentication. **Conflicts with oauth2_token**
- `password` - (Optional) The password to use for API basic authentication. **Conflicts with oauth2_token**
- `disable_ssl_verification` - (Optional) Disable SSL verification. Default is `false`

## Running Acceptence Tests

Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ provider "airflow" {
- `oauth2_token` - (Optional) An OAUTH2 identity token used to authenticate against an Airflow server. **Conflicts with username and password**
- `username` - (Optional) The username to use for API basic authentication. **Conflicts with oauth2_token**
- `password` - (Optional) The password to use for API basic authentication. **Conflicts with oauth2_token**
- `disable_ssl_verification` - (Optional) Disable SSL verification. Default is `false`

## Running Acceptence Tests

Expand Down
7 changes: 4 additions & 3 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ func AirflowProvider() *schema.Provider {
ConflictsWith: []string{"oauth2_token"},
},
"disable_ssl_verification": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Type: schema.TypeBool,
Optional: true,
Description: "Disable SSL verification",
Default: false,
},
},
ResourcesMap: map[string]*schema.Resource{
Expand Down

0 comments on commit 1d8c1db

Please sign in to comment.