Skip to content

Commit

Permalink
Fix tftest and format
Browse files Browse the repository at this point in the history
  • Loading branch information
juliodiez committed Jan 26, 2023
1 parent 793596c commit 4d65617
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/net-glb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ module "glb-0" {
{ backend = "neg-0" }
]
health_checks = []
port_name = "http"
port_name = "http"
}
}
# with a single serverless NEG the implied default health check is not needed
Expand All @@ -475,7 +475,7 @@ module "glb-0" {
}
}
}
# tftest ...
# tftest modules=1 resources=6 inventory=https-sneg.yaml
```

### URL Map
Expand Down
35 changes: 35 additions & 0 deletions tests/modules/net_glb/examples/https-sneg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

values:
module.glb-0.google_compute_backend_service.default["default"]:
port_name: http
protocol: HTTPS
module.glb-0.google_compute_global_forwarding_rule.default:
load_balancing_scheme: EXTERNAL
port_range: '443'
module.glb-0.google_compute_region_network_endpoint_group.serverless["neg-0"]:
cloud_run:
- service: hello
tag: null
url_mask: null

counts:
google_compute_backend_service: 1
google_compute_global_forwarding_rule: 1
google_compute_managed_ssl_certificate: 1
google_compute_region_network_endpoint_group: 1
google_compute_target_https_proxy: 1
google_compute_url_map: 1

1 comment on commit 4d65617

@juliocc
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

perfect!

Please sign in to comment.