We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed0b0a commit b73d165Copy full SHA for b73d165
test/integration/networks/networks_test.go
@@ -38,6 +38,14 @@ func getNetworkMode(t *testing.T) string {
38
return ""
39
}
40
41
+func getFirewallMode(t *testing.T) string {
42
+ mode := utils.ValFromEnv(t, "TF_VAR_example_foundations_mode")
43
+ if mode == "HubAndSpoke" {
44
+ return "hub-and-spoke"
45
+ }
46
+ return "dual-svpc"
47
+}
48
+
49
func getNetworkResourceNames(envCode string, networkMode string, firewallMode string) map[string]map[string]string {
50
return map[string]map[string]string{
51
"base": {
0 commit comments