Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ansible Changes for 2.7 release #417

Merged
merged 4 commits into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/chef/spanner
Submodule spanner updated 1 files
+1 −1 README.md
2 changes: 1 addition & 1 deletion build/puppet/spanner
2 changes: 1 addition & 1 deletion build/terraform
2 changes: 0 additions & 2 deletions products/dns/examples/ansible/resource_record_set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,3 @@ dependencies:
service_account_file: <%= ctx[:service_account_file] %>
verifier: !ruby/object:Provider::Ansible::NoVerifier
reason: 'Formatting issues'
task: !ruby/object:Provider::Ansible::NoTask
reason: 'Formatting issues'
2 changes: 1 addition & 1 deletion products/spanner/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ objects:
- !ruby/object:Api::Type::String
name: 'name'
description: |
A unique identifier for the instance, which cannot be changed after
A unique identifier for the database, which cannot be changed after
the instance is created. Values are of the form
projects/<project>/instances/[a-z][-a-z0-9]*[a-z0-9]. The final
segment of the name must be between 6 and 30 characters in length.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,14 +221,19 @@ func testAccCheckComputeAutoscalerUpdated(n string, max int64) resource.TestChec

func testAccComputeAutoscaler_scaffolding(it_name, tp_name, igm_name string) string {
return fmt.Sprintf(`
data "google_compute_image" "my_image" {
family = "debian-9"
project = "debian-cloud"
}

resource "google_compute_instance_template" "foobar" {
name = "%s"
machine_type = "n1-standard-1"
can_ip_forward = false
tags = ["foo", "bar"]

disk {
source_image = "debian-cloud/debian-8-jessie-v20160803"
source_image = "${data.google_compute_image.my_image.self_link}"
auto_delete = true
boot = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,19 @@ func testAccCheckComputeRegionAutoscalerUpdated(n string, max int64) resource.Te

func testAccComputeRegionAutoscaler_basic(it_name, tp_name, igm_name, autoscaler_name string) string {
return fmt.Sprintf(`
data "google_compute_image" "my_image" {
family = "debian-9"
project = "debian-cloud"
}

resource "google_compute_instance_template" "foobar" {
name = "%s"
machine_type = "n1-standard-1"
can_ip_forward = false
tags = ["foo", "bar"]

disk {
source_image = "debian-cloud/debian-8-jessie-v20160803"
source_image = "${data.google_compute_image.my_image.self_link}"
auto_delete = true
boot = true
}
Expand Down Expand Up @@ -212,14 +217,19 @@ resource "google_compute_region_autoscaler" "foobar" {

func testAccComputeRegionAutoscaler_update(it_name, tp_name, igm_name, autoscaler_name string) string {
return fmt.Sprintf(`
data "google_compute_image" "my_image" {
family = "debian-9"
project = "debian-cloud"
}

resource "google_compute_instance_template" "foobar" {
name = "%s"
machine_type = "n1-standard-1"
can_ip_forward = false
tags = ["foo", "bar"]

disk {
source_image = "debian-cloud/debian-8-jessie-v20160803"
source_image = "${data.google_compute_image.my_image.self_link}"
auto_delete = true
boot = true
}
Expand Down