@hiiretail/gcp-infra-cli 0.90.0 → 0.90.1

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.
@@ -26,3 +26,16 @@ resource "google_compute_firewall" "allow_negs" {
26
26
  priority = 1000
27
27
  direction = "INGRESS"
28
28
  }
29
+
30
+ resource "google_compute_firewall" "allow_internal_lb" {
31
+ name = "allow-internal-lb"
32
+ network = var.network
33
+ project = var.project
34
+
35
+ allow {
36
+ protocol = "all"
37
+ }
38
+ source_ranges = ["10.10.0.0/23"]
39
+ priority = 1000
40
+ direction = "INGRESS"
41
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiiretail/gcp-infra-cli",
3
- "version": "0.90.0",
3
+ "version": "0.90.1",
4
4
  "description": "Infrastructure as code generator for GCP.",
5
5
  "main": "src/cli.js",
6
6
  "bin": {