{{ account['email'] }} | {{ account['sector'] }}
9 |15 | {title} 16 |
17 |{card.title}
12 |{card.body}
13 |8 | RAD Lab Module with deployment ID - 9 | 10 | {{deploymentId}} 12 | has been successfully deleted! 13 |
14 | 15 |Thank you
21 | P.S:- This is an auto generated email. Please do not reply!
22 | 23 | 24 | -------------------------------------------------------------------------------- /radlab-ui/webapp/src/pages/ThemeChanger.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect } from "react" 2 | import startCase from "lodash/startCase" 3 | import { themeChange } from "theme-change" 4 | interface ThemeChangerProps { 5 | themes: string[] 6 | } 7 | 8 | const ThemeChanger: React.FC
21 |
21 | {siteConfig.tagline}
17 |{{mailBodyTitle}}
21 |Please use below details to access the same.
22 | 23 || Name | 26 |value | 27 |
|---|---|
| Project Id | 30 |31 | {{projectId}} 34 | | 35 |
| Deployment Id | 38 |39 | {{deploymentId}} 42 | | 43 |
| {{name}} | 47 |{{value}} | 48 |
Thank you
58 | P.S:- This is an auto generated email. Please do not reply!
59 | 60 | 61 | -------------------------------------------------------------------------------- /modules/secure_data_warehouse/network.tf: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright 2023 Google LLC 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | module "dwh_networking_conf" { 18 | source = "GoogleCloudPlatform/secured-data-warehouse/google//modules/dwh-networking" 19 | project_id = module.project_radlab_sdw_conf_data.project_id 20 | region = var.region 21 | vpc_name = "dataflow-conf-vpc" 22 | subnet_ip = "198.0.0.0/16" 23 | 24 | depends_on = [ 25 | time_sleep.wait_120_seconds 26 | ] 27 | } 28 | 29 | module "dwh_networking_data_ingest" { 30 | source = "GoogleCloudPlatform/secured-data-warehouse/google//modules/dwh-networking" 31 | project_id = module.project_radlab_sdw_data_ingest.project_id 32 | region = var.region 33 | vpc_name = "dataflow-data-ingest-vpc" 34 | subnet_ip = "199.0.0.0/16" 35 | 36 | depends_on = [ 37 | time_sleep.wait_120_seconds 38 | ] 39 | } 40 | 41 | -------------------------------------------------------------------------------- /radlab-ui/webapp/src/components/forms/fields/ZoneStringField.tsx: -------------------------------------------------------------------------------- 1 | import { Field, ErrorMessage } from "formik" 2 | import { IUIVariable } from "@/utils/types" 3 | import { useEffect, useState } from "react" 4 | import { cloudLocationStore } from "@/store" 5 | 6 | interface IZoneStringFieldProps { 7 | variable: IUIVariable 8 | validate: Function 9 | region?: string 10 | } 11 | 12 | const ZoneStringField: React.FC