Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact 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

[v17] fix tctl terraform env integration test #51317

Merged
merged 1 commit into from
Jan 22, 2025
Merged
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
3 changes: 2 additions & 1 deletion integration/tctl_terraform_env_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import (
// TestTCTLTerraformCommand_ProxyJoin validates that the command `tctl terraform env` can run against a Teleport Proxy
// service and generates valid credentials Terraform can use to connect to Teleport.
func TestTCTLTerraformCommand_ProxyJoin(t *testing.T) {
// test is not Parallel because of the metrics black hole
testDir := t.TempDir()
prometheus.DefaultRegisterer = metricRegistryBlackHole{}

Expand Down Expand Up @@ -127,7 +128,7 @@ func TestTCTLTerraformCommand_ProxyJoin(t *testing.T) {
// TestTCTLTerraformCommand_AuthJoin validates that the command `tctl terraform env` can run against a Teleport Auth
// service and generates valid credentials Terraform can use to connect to Teleport.
func TestTCTLTerraformCommand_AuthJoin(t *testing.T) {
t.Parallel()
// test is not Parallel because of the metrics black hole
testDir := t.TempDir()
prometheus.DefaultRegisterer = metricRegistryBlackHole{}

Expand Down
Loading