diff --git a/test/integration/build/gcp-mm.tf b/test/integration/build/gcp-mm.tf index 02e4b7abc..73b3777bf 100644 --- a/test/integration/build/gcp-mm.tf +++ b/test/integration/build/gcp-mm.tf @@ -220,6 +220,10 @@ variable "cloud_composer_v1" { type = any } +variable "organization_envgroup" { + type = any +} + resource "google_compute_ssl_policy" "custom-ssl-policy" { name = var.ssl_policy["name"] min_tls_version = var.ssl_policy["min_tls_version"] @@ -1565,3 +1569,9 @@ resource "google_composer_v1_environment" "test" { } } } + +resource "google_apigee_envgroup" "env_grp" { + name = var.organization_envgroup.name + hostnames = var.organization_envgroup.hostnames + org_id = var.organization_envgroup.project +} \ No newline at end of file diff --git a/test/integration/configuration/mm-attributes.yml b/test/integration/configuration/mm-attributes.yml index 37074e018..96bf86733 100644 --- a/test/integration/configuration/mm-attributes.yml +++ b/test/integration/configuration/mm-attributes.yml @@ -562,3 +562,11 @@ cloud_composer_v1: name : "example-composer-env" region : "us-central1" image_version : "composer-1.20.12-airflow-2.4.3" + +organization_envgroup: + project: "organizations/ppradhan" + name : "test-env-group" + hostnames: ["34.95.97.227.nip.io"] + parent : "organizations/ppradhan/envgroups" + state : "ACTIVE" + created_at : "1698227493454"