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 d8a0137 commit beb1b50Copy full SHA for beb1b50
security.group-rules.tf
@@ -32,8 +32,23 @@
32
33
variable rules {
34
35
- type = map( string, list(any) )
+ type = map( string, list( string ) )
36
37
+ default = {
38
+ "https" = [ "443", "443", "tcp", "http secured" ]
39
+ "http" = [ "80", "80", "tcp", "http plaintext" ]
40
+ "all-traffic" = [ "-1", "-1", "-1", "All protocols" ]
41
+ "ecs" = [ "32768", "61000", "tcp", "cluster comms" ]
42
+ "docker" = [ "5000", "5000", "tcp", "docker registry" ]
43
+ "java" = [ "8080", "8080", "tcp", "java port" ]
44
+ "jenkins" = [ "8080", "8080", "tcp", "jenkins ci" ]
45
+ "sonar" = [ "9000", "9000", "tcp", "sonarqube metrics" ]
46
+ "postgres" = [ "5432", "5432", "tcp", "postgresql db" ]
47
+ }
48
+}
49
+
50
51
+/*
52
default = {
53
"https" = [ 443, 443, "tcp", "http secured" ]
54
"http" = [ 80, 80, "tcp", "http plaintext" ]
@@ -45,7 +60,7 @@ variable rules {
60
"sonar" = [ 9000, 9000, "tcp", "sonarqube metrics" ]
61
"postgres" = [ 5432, 5432, "tcp", "postgresql db" ]
62
}
-}
63
+*/
64
65
66
/*
0 commit comments