terrafying-components 2.0.6 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/terrafying/components/version.rb +1 -1
- data/lib/terrafying/components/vpn.rb +12 -2
- data/lib/terrafying/components/vpn_oidc.rb +12 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d27dba45000471cefaca8b0bb650380123f1ccdbdf52adc240689e4b260533d3
|
4
|
+
data.tar.gz: 9bc0cfa749d0060ff0f9213a12baa661e4c6383bc2d256fb4daea225a4c7cfc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17044b38860633249fd30a06ceff2c7db97cd8570900fa53c813cc2efd8fbd99463b3650f60180b0d181156ca11331394da1db89d8afaaea7321605c4e80b201
|
7
|
+
data.tar.gz: 0b5f7e9f9c23c4478d2255686de6e8412713b8ef36b5295b2955187be2978064e338c6f910c6220bf3611b3b1e4aa3a34da66ceaeb9b271373f18d2231f963dc
|
@@ -134,7 +134,12 @@ module Terrafying
|
|
134
134
|
from_port: 0,
|
135
135
|
to_port: 0,
|
136
136
|
protocol: -1,
|
137
|
-
security_groups: [@service.egress_security_group]
|
137
|
+
security_groups: [@service.egress_security_group],
|
138
|
+
ipv6_cidr_blocks: nil,
|
139
|
+
prefix_list_ids: nil,
|
140
|
+
cidr_blocks: nil,
|
141
|
+
self: nil,
|
142
|
+
description: nil
|
138
143
|
}
|
139
144
|
]
|
140
145
|
|
@@ -143,7 +148,12 @@ module Terrafying
|
|
143
148
|
from_port: 0,
|
144
149
|
to_port: 0,
|
145
150
|
protocol: -1,
|
146
|
-
cidr_blocks: ["#{@ip_address}/32"]
|
151
|
+
cidr_blocks: ["#{@ip_address}/32"],
|
152
|
+
ipv6_cidr_blocks: nil,
|
153
|
+
prefix_list_ids: nil,
|
154
|
+
security_groups: nil,
|
155
|
+
self: nil,
|
156
|
+
description: nil
|
147
157
|
}
|
148
158
|
end
|
149
159
|
|
@@ -134,7 +134,12 @@ module Terrafying
|
|
134
134
|
from_port: 0,
|
135
135
|
to_port: 0,
|
136
136
|
protocol: -1,
|
137
|
-
security_groups: [@service.egress_security_group]
|
137
|
+
security_groups: [@service.egress_security_group],
|
138
|
+
ipv6_cidr_blocks: nil,
|
139
|
+
prefix_list_ids: nil,
|
140
|
+
cidr_blocks: nil,
|
141
|
+
self: nil,
|
142
|
+
description: nil,
|
138
143
|
}
|
139
144
|
]
|
140
145
|
|
@@ -143,7 +148,12 @@ module Terrafying
|
|
143
148
|
from_port: 0,
|
144
149
|
to_port: 0,
|
145
150
|
protocol: -1,
|
146
|
-
cidr_blocks: ["#{@ip_address}/32"]
|
151
|
+
cidr_blocks: ["#{@ip_address}/32"],
|
152
|
+
ipv6_cidr_blocks: nil,
|
153
|
+
prefix_list_ids: nil,
|
154
|
+
security_groups: nil,
|
155
|
+
self: nil,
|
156
|
+
description: nil
|
147
157
|
}
|
148
158
|
end
|
149
159
|
|