Skip to content

Commit 9bb9e29

Browse files
committed
- Add tests
- Add gitignore - Update example module setup and name - Fix MODULE_DIRECTORIES error - Add tflint config
1 parent 080237d commit 9bb9e29

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/examples_complete_test.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,10 @@ func setAWSEnvVars(configPath, credentialsPath, endpoint string) {
144144
// getLocalStackAuthToken retrieves LocalStack API token
145145
func getLocalStackAuthToken(t *testing.T) string {
146146
token := os.Getenv("LOCALSTACK_AUTH_TOKEN")
147-
if token == "" {
148-
t.Fatalf("LOCALSTACK_AUTH_TOKEN is not set")
149-
}
147+
// Don't fail if token is not set for non-pro version
148+
//if token == "" {
149+
// t.Fatalf("LOCALSTACK_AUTH_TOKEN is not set")
150+
//}
150151
return token
151152
}
152153

0 commit comments

Comments
 (0)