Skip to content

Commit

Permalink
Fix the underscores in the google_compute_backend_service example
Browse files Browse the repository at this point in the history
  • Loading branch information
rileykarson authored and gh-mlfowler committed Jun 20, 2017
1 parent 57a547c commit cb88795
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/r/compute_backend_service.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For internal load balancing, use a [google_compute_region_backend_service](/docs

```hcl
resource "google_compute_backend_service" "website" {
name = "my_backend"
name = "my-backend"
description = "Our company website"
port_name = "http"
protocol = "HTTP"
Expand All @@ -33,15 +33,15 @@ resource "google_compute_backend_service" "website" {
}
resource "google_compute_instance_group_manager" "webservers" {
name = "my_webservers"
name = "my-webservers"
instance_template = "${google_compute_instance_template.webserver.self_link}"
base_instance_name = "webserver"
zone = "us-central1-f"
target_size = 1
}
resource "google_compute_instance_template" "webserver" {
name = "standard_webserver"
name = "standard-webserver"
machine_type = "n1-standard-1"
network_interface {
Expand Down Expand Up @@ -139,5 +139,5 @@ exported:
Backend services can be imported using the `name`, e.g.

```
$ terraform import google_compute_backend_service.website my_backend
$ terraform import google_compute_backend_service.website my-backend
```

0 comments on commit cb88795

Please sign in to comment.