Skip to content

Commit

Permalink
fix: remove env vars with password (#2300)
Browse files Browse the repository at this point in the history
## Description

Removes env vars in tests with `PASSWORD` that git guardian was picking
up as secrets.

## Is this change user facing?
NO

## References (if applicable)
  • Loading branch information
tedim52 authored Mar 14, 2024
1 parent 203371e commit 6646c20
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ func (suite *StartosisIntepreterPlanYamlTestSuite) TestExec() {
env_vars={
"POSTGRES_DB": "kurtosis",
"POSTGRES_USER": "kurtosis",
"POSTGRES_PASSWORD": "kurtosis",
},
files = {
"/root": hi_files_artifact,
Expand Down Expand Up @@ -338,8 +337,6 @@ services:
envVars:
- key: POSTGRES_DB
value: kurtosis
- key: POSTGRES_PASSWORD
value: kurtosis
- key: POSTGRES_USER
value: kurtosis
files:
Expand Down Expand Up @@ -679,7 +676,6 @@ func (suite *StartosisIntepreterPlanYamlTestSuite) TestRemoveService() {
env_vars={
"POSTGRES_DB": "tedi",
"POSTGRES_USER": "tedi",
"POSTGRES_PASSWORD": "tedi",
},
files = {
"/root": hi_files_artifact,
Expand Down Expand Up @@ -724,7 +720,6 @@ func (suite *StartosisIntepreterPlanYamlTestSuite) TestFutureReferencesAreSwappe
env_vars={
"POSTGRES_DB": "kurtosis",
"POSTGRES_USER": "kurtosis",
"POSTGRES_PASSWORD": "kurtosis",
},
files = {
"/root": hi_files_artifact,
Expand Down Expand Up @@ -773,8 +768,6 @@ services:
envVars:
- key: POSTGRES_DB
value: kurtosis
- key: POSTGRES_PASSWORD
value: kurtosis
- key: POSTGRES_USER
value: kurtosis
files:
Expand Down

0 comments on commit 6646c20

Please sign in to comment.