cloud-foundation-fabric/tests/modules/net_vpc_firewall/examples/local-ranges.yaml

63 lines
1.8 KiB
YAML

# 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.firewall.google_compute_firewall.custom-rules["allow-ingress-source-destination-ranges"]:
allow:
- ports: []
protocol: all
deny: []
description: Allow ingress using source and destination ranges
destination_ranges:
- 10.132.0.0/20
- 10.138.0.0/20
direction: INGRESS
disabled: false
log_config: []
name: allow-ingress-source-destination-ranges
network: vpc-name
priority: 1000
project: project-id
source_ranges:
- 172.16.0.0/12
source_service_accounts: null
source_tags: null
target_service_accounts: null
target_tags: null
module.firewall.google_compute_firewall.custom-rules["deny-egress-source-destination-ranges"]:
allow: []
deny:
- ports: []
protocol: all
description: Deny egress using source and destination ranges
destination_ranges:
- 172.16.0.0/12
direction: EGRESS
disabled: false
log_config: []
name: deny-egress-source-destination-ranges
network: vpc-name
priority: 1000
project: project-id
source_ranges:
- 10.132.0.0/20
- 10.138.0.0/20
source_service_accounts: null
source_tags: null
target_service_accounts: null
target_tags: null
counts:
google_compute_firewall: 2