8000 nomad_acl_auth_method: add pkce and client assertions by gulducat · Pull Request #523 · hashicorp/terraform-provider-nomad · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

nomad_acl_auth_method: add pkce and client assertions #523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and con 8000 tact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions nomad/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,18 @@ func TestProvider_impl(t *testing.T) {

var testProvider *schema.Provider
var testProviders map[string]*schema.Provider
var testProviderFactories map[string]func() (*schema.Provider, error)

func init() {
testProvider = Provider()
testProviders = map[string]*schema.Provider{
"nomad": testProvider,
}
testProviderFactories = map[string]func() (*schema.Provider, error){
"nomad": func() (*schema.Provider, error) {
return testProvider, nil
},
}
}

func testAccPreCheck(t *testing.T) {
Expand Down
Loading
Loading
0