Skip to content

Commit ef97bce

Browse files
updated the informatica secure agent private solution and added the public solution for the livelabs
1 parent ac1edc3 commit ef97bce

File tree

33 files changed

+1729
-132
lines changed

33 files changed

+1729
-132
lines changed

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/modules/cloud-foundation-library/database/adw_private_endpoint_for_each/main.tf

Lines changed: 0 additions & 38 deletions
This file was deleted.

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/modules/cloud-foundation-library/database/adw_private_endpoint_for_each/outputs.tf

Lines changed: 0 additions & 49 deletions
This file was deleted.

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/modules/cloud-foundation-library/database/adw_private_endpoint_for_each/variables.tf

Lines changed: 0 additions & 23 deletions
This file was deleted.

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/README.md renamed to cloud-foundation/solutions/Informatica-Secure-Agent-create-a-secure-ready-to-go-complete-data-platform-on-OCI/README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Oracle Cloud Foundation Terraform Solution - Deploy an analytics platform for Informatica IDMC on Oracle Cloud
1+
# Oracle Cloud Foundation Terraform Solution - Deploy Informatica Secure Agent – create a secure ready to go complete data platform on OCI
22

33
## Table of Contents
44
1. [Overview](#overview)
@@ -51,7 +51,7 @@ If you don't have the required permissions and quota, contact your tenancy admin
5151

5252
# <a name="Deploy-Using-Oracle-Resource-Manager"></a>Deploy Using Oracle Resource Manager
5353

54-
1. Click [![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?region=home&zipUrl=https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation/releases/download/v1.0.0/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent-RM.zip)
54+
1. Click [![Deploy to Oracle Cloud](https://oci-resourcemanager-plugin.plugins.oci.oraclecloud.com/latest/deploy-to-oracle-cloud.svg)](https://cloud.oracle.com/resourcemanager/stacks/create?region=home&zipUrl=https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation/releases/download/v1.0.0/Informatica-Secure-Agent-create-a-secure-ready-to-go-complete-data-platform-on-OCI-RM.zip)
5555

5656

5757
If you aren't already signed in, when prompted, enter the tenancy and user credentials.
@@ -71,7 +71,7 @@ If you don't have the required permissions and quota, contact your tenancy admin
7171
Now, you'll want a local copy of this repo. You can make that with the commands:
7272

7373
git clone https://github.com/oracle-devrel/terraform-oci-oracle-cloud-foundation.git
74-
cd terraform-oci-oracle-cloud-foundation/cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent
74+
cd terraform-oci-oracle-cloud-foundation/cloud-foundation/solutions/Informatica-Secure-Agent-create-a-secure-ready-to-go-complete-data-platform-on-OCI
7575
ls
7676

7777
## Deployment
@@ -443,9 +443,6 @@ variable "private_subnet_cidr" {
443443
444444
```
445445

446-
Don't modify any other variables in the variable.tf file - it may cause that the solution will not work propertly. The use_regional_subnet variable is for the subnets to be regional, not AD specific.
447-
448-
449446
## Running the code
450447

451448
```

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/local.tf renamed to cloud-foundation/solutions/Informatica-Secure-Agent-create-a-secure-ready-to-go-complete-data-platform-on-OCI/local.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ bastion_instance_params = {
189189
public-subnet = {
190190
compartment_id=var.compartment_id,
191191
vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
192-
availability_domain=var.use_regional_subnet? "" : local.public_subnet_availability_domain,
192+
availability_domain=""
193193
cidr=var.public_subnet_cidr,
194194
dns_label="public",
195195
private=false,
@@ -201,7 +201,7 @@ bastion_instance_params = {
201201
private-subnet = {
202202
compartment_id=var.compartment_id,
203203
vcn_id=lookup(module.network-vcn.vcns,"vcn").id,
204-
availability_domain=var.use_regional_subnet? "" : local.public_subnet_availability_domain,
204+
availability_domain=""
205205
cidr=var.private_subnet_cidr,
206206
dns_label="private",
207207
private=true,

cloud-foundation/solutions/Informatica-Intelligent-Data-Management-Cloud-Secure-Agent/main.tf renamed to cloud-foundation/solutions/Informatica-Secure-Agent-create-a-secure-ready-to-go-complete-data-platform-on-OCI/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Create ADW Database with Endpoint in private subnet
66
module "adw_database_private_endpoint" {
7-
source = "./modules/cloud-foundation-library/database/adw_private_endpoint_for_each"
7+
source = "../../../cloud-foundation/modules/cloud-foundation-library/database/adw_private_endpoint"
88
adw_params = local.adw_params
99
}
1010

0 commit comments

Comments
 (0)