Skip to content

Commit

Permalink
Add RegionUrlMap to compute
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
Ty Larrabee authored and modular-magician committed Sep 18, 2019
1 parent bc7726a commit 7f558eb
Show file tree
Hide file tree
Showing 6 changed files with 1,681 additions and 3 deletions.
5 changes: 3 additions & 2 deletions google/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -429,9 +429,9 @@ func Provider() terraform.ResourceProvider {
return provider
}

// Generated resources: 78
// Generated resources: 79
// Generated IAM resources: 24
// Total generated resources: 102
// Total generated resources: 103
func ResourceMap() map[string]*schema.Resource {
resourceMap, _ := ResourceMapWithErrors()
return resourceMap
Expand Down Expand Up @@ -481,6 +481,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
"google_compute_node_template": resourceComputeNodeTemplate(),
"google_compute_region_autoscaler": resourceComputeRegionAutoscaler(),
"google_compute_region_disk": resourceComputeRegionDisk(),
"google_compute_region_url_map": resourceComputeRegionUrlMap(),
"google_compute_resource_policy": resourceComputeResourcePolicy(),
"google_compute_route": resourceComputeRoute(),
"google_compute_router": resourceComputeRouter(),
Expand Down
2 changes: 1 addition & 1 deletion google/resource_compute_region_backend_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func resourceComputeRegionBackendService() *schema.Resource {
Type: schema.TypeString,
Computed: true,
Optional: true,
ValidateFunc: validation.StringInSlice([]string{"TCP", "UDP", ""}, false),
ValidateFunc: validation.StringInSlice([]string{"HTTP", "HTTPS", "HTTP2", "SSL", "TCP", "UDP", ""}, false),
},
"region": {
Type: schema.TypeString,
Expand Down
Loading

0 comments on commit 7f558eb

Please sign in to comment.