Skip to content

Commit

Permalink
Add L7 ILB fields to RegionBackendService (#1311)
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 b8295e5 commit 0ed4068
Show file tree
Hide file tree
Showing 8 changed files with 2,390 additions and 187 deletions.
2 changes: 1 addition & 1 deletion google-beta/resource_compute_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,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-beta/resource_compute_global_forwarding_rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,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 0ed4068

Please sign in to comment.