Skip to content

Commit

Permalink
Add network field for internal load balancers (#926)
Browse files Browse the repository at this point in the history
* add network field for internal lb

* add note about ilb network type being immutable
  • Loading branch information
beardicus authored Oct 15, 2024
1 parent b78970b commit 2e3fed1
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,17 @@ properties:
firewall:
$ref: 'lb_firewall.yml'

network:
type: string
example: EXTERNAL
enum:
- EXTERNAL
- INTERNAL
default: EXTERNAL
description: A string indicating whether the load balancer should be external
or internal. Internal load balancers have no public IPs and are only accessible
to resources on the same VPC network. This property cannot be updated after
creating the load balancer.

required:
- forwarding_rules

0 comments on commit 2e3fed1

Please sign in to comment.