Skip to content

Commit

Permalink
Updates terraform script
Browse files Browse the repository at this point in the history
Signed-off-by: Vasu1105 <vasundhara.jagdale@progress.com>
  • Loading branch information
Vasu1105 committed Dec 8, 2023
1 parent cd12693 commit 4fdb20e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/integration/build/gcp-mm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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
}
8 changes: 8 additions & 0 deletions test/integration/configuration/mm-attributes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 4fdb20e

Please sign in to comment.