diff --git a/modules/instance_template/README.md b/modules/instance_template/README.md index b16e18d7..5078caeb 100644 --- a/modules/instance_template/README.md +++ b/modules/instance_template/README.md @@ -33,7 +33,7 @@ See the [simple](../../examples/instance_template/simple) for a usage example. | shielded\_instance\_config | Not used unless enable\_shielded\_vm is true. Shielded VM configuration for the instance. |
object({
enable_secure_boot = bool
enable_vtpm = bool
enable_integrity_monitoring = bool
})
|
{
"enable_integrity_monitoring": true,
"enable_secure_boot": true,
"enable_vtpm": true
}
| no | | source\_image | Source disk image. If neither source\_image nor source\_image\_family is specified, defaults to the latest public CentOS image. | `string` | `""` | no | | source\_image\_family | Source image family. If neither source\_image nor source\_image\_family is specified, defaults to the latest public CentOS image. | `string` | `"centos-7"` | no | -| source\_image\_project | Project where the source image comes from. The default project contains images that support Shielded VMs if desired | `string` | `"gce-uefi-images"` | no | +| source\_image\_project | Project where the source image comes from. The default project contains CentOS images. | `string` | `"centos-cloud"` | no | | startup\_script | User startup script to run when instances spin up | `string` | `""` | no | | subnetwork | The name of the subnetwork to attach this interface to. The subnetwork must exist in the same region this instance will be created in. Either network or subnetwork must be provided. | `string` | `""` | no | | subnetwork\_project | The ID of the project in which the subnetwork belongs. If it is not provided, the provider project is used. | `string` | `""` | no | diff --git a/modules/instance_template/variables.tf b/modules/instance_template/variables.tf index 360b0d3b..fb8b41b0 100644 --- a/modules/instance_template/variables.tf +++ b/modules/instance_template/variables.tf @@ -73,8 +73,8 @@ variable "source_image_family" { } variable "source_image_project" { - description = "Project where the source image comes from. The default project contains images that support Shielded VMs if desired" - default = "gce-uefi-images" + description = "Project where the source image comes from. The default project contains CentOS images." + default = "centos-cloud" } variable "disk_size_gb" { diff --git a/modules/mig/versions.tf b/modules/mig/versions.tf index 7bfb5ea0..17e2fb2d 100644 --- a/modules/mig/versions.tf +++ b/modules/mig/versions.tf @@ -21,9 +21,9 @@ terraform { google-beta = ">= 3.43, <4.0" } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-vm:mig/v6.1.0" + module_name = "blueprints/terraform/terraform-google-vm:mig/v6.0.0" } provider_meta "google-beta" { - module_name = "blueprints/terraform/terraform-google-vm:mig/v6.1.0" + module_name = "blueprints/terraform/terraform-google-vm:mig/v6.0.0" } } diff --git a/modules/mig_with_percent/versions.tf b/modules/mig_with_percent/versions.tf index 1743156c..758005bb 100644 --- a/modules/mig_with_percent/versions.tf +++ b/modules/mig_with_percent/versions.tf @@ -21,9 +21,9 @@ terraform { google-beta = ">= 3.43, <4.0" } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-vm:mig_with_percent/v6.1.0" + module_name = "blueprints/terraform/terraform-google-vm:mig_with_percent/v6.0.0" } provider_meta "google-beta" { - module_name = "blueprints/terraform/terraform-google-vm:mig_with_percent/v6.1.0" + module_name = "blueprints/terraform/terraform-google-vm:mig_with_percent/v6.0.0" } }