Skip to content

Commit

Permalink
Add L7 ILB fields to RegionBackendService (#4772)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored and Ty Larrabee committed Nov 5, 2019
1 parent dbe4f70 commit c8773fc
Show file tree
Hide file tree
Showing 6 changed files with 532 additions and 164 deletions.
2 changes: 1 addition & 1 deletion google/resource_compute_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func resourceComputeForwardingRule() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"INTERNAL", "EXTERNAL", ""}, false),
ValidateFunc: validation.StringInSlice([]string{"EXTERNAL", "INTERNAL", "INTERNAL_MANAGED", ""}, false),
Default: "EXTERNAL",
},
"network": {
Expand Down
2 changes: 1 addition & 1 deletion google/resource_compute_global_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func resourceComputeGlobalForwardingRule() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
ValidateFunc: validation.StringInSlice([]string{"INTERNAL_SELF_MANAGED", "EXTERNAL", ""}, false),
ValidateFunc: validation.StringInSlice([]string{"EXTERNAL", "INTERNAL_SELF_MANAGED", ""}, false),
Default: "EXTERNAL",
},
"metadata_filters": {
Expand Down
Loading

0 comments on commit c8773fc

Please sign in to comment.