vme

Google Cloud VMware Engine

Compute & WebGCP
General

General information about the service.

Description

Google Cloud VMware Engine provides a fully managed VMware platform running natively on Google Cloud infrastructure. Migrate and run VMware workloads without refactoring.

Service ID

vmwareengine.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/privateClouds/{cloud}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

vme-{workload}-{env}

Length

4-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

regional

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_vmwareengine_private_cloud" "main" {
2 location = "${var.region}-a"
3 name = "vme-${var.workload}-${var.environment}"
4 management_cluster {
5 cluster_id = "mgmt-cluster"
6 node_type_configs {
7 node_type_id = "standard-72"
8 node_count = 3
9 }
10 }
11 network_config {
12 management_cidr = "192.168.0.0/24"
13 }
14}
Utilities

Utilities to support app deployment or configuration.