Skip to content

Commit

Permalink
Allow au for region specification
Browse files Browse the repository at this point in the history
  • Loading branch information
scastrianni committed Feb 8, 2024
1 parent a883bdf commit 52a2ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion konnect/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func Provider() *schema.Provider {
Type: schema.TypeString,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("KONNECT_REGION", "us"),
ValidateFunc: validation.StringInSlice([]string{"us", "eu"}, false),
ValidateFunc: validation.StringInSlice([]string{"us", "eu", "au"}, false),
},
//"default_tags": {
// Type: schema.TypeSet,
Expand Down

0 comments on commit 52a2ec6

Please sign in to comment.