File tree Expand file tree Collapse file tree 7 files changed +87
-2
lines changed Expand file tree Collapse file tree 7 files changed +87
-2
lines changed Original file line number Diff line number Diff line change @@ -1432,6 +1432,12 @@ variables:
14321432 - ${create_new_vcn}
14331433 - not :
14341434 - ${create_new_subnets}
1435+ - eq :
1436+ - ${load_balancer_strategy_new_subnet}
1437+ - " Create New Load Balancer"
1438+ - eq :
1439+ - ${load_balancer_strategy_existing_subnet}
1440+ - " Create New Load Balancer"
14351441 type : oci:core:nsg:id
14361442 title : " Network Security Group for Load Balancer"
14371443 description : " The pre-created NSG that is assigned to the load balancer"
@@ -2047,7 +2053,7 @@ variables:
20472053 - ${add_existing_mount_target}
20482054 type : oci:identity:availabilitydomain:name
20492055 title : File System Availability Domain
2050- description : The name of the availability domain in which to create the file system and mount target.
2056+ description : " The name of the availability domain for the file system and mount target"
20512057 dependsOn :
20522058 compartmentId : ${compartment_ocid}
20532059 required : true
Original file line number Diff line number Diff line change @@ -1441,6 +1441,12 @@ variables:
14411441 - ${create_new_vcn}
14421442 - not :
14431443 - ${create_new_subnets}
1444+ - eq :
1445+ - ${load_balancer_strategy_new_subnet}
1446+ - " Create New Load Balancer"
1447+ - eq :
1448+ - ${load_balancer_strategy_existing_subnet}
1449+ - " Create New Load Balancer"
14441450 type : oci:core:nsg:id
14451451 title : " Network Security Group for Load Balancer"
14461452 description : " The pre-created NSG that is assigned to the load balancer"
@@ -1594,7 +1600,7 @@ variables:
15941600 - ${add_existing_mount_target}
15951601 type : oci:identity:availabilitydomain:name
15961602 title : File System Availability Domain
1597- description : The name of the availability domain in which to create the file system and mount target.
1603+ description : " The name of the availability domain for the file system and mount target"
15981604 dependsOn :
15991605 compartmentId : ${compartment_ocid}
16001606 required : true
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022, Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ # ## File System parameters to create new file system
5+ add_fss = true
6+ fss_availability_domain = " HiGv:US-ASHBURN-AD-2"
7+ mount_target_subnet_cidr = " 10.0.4.0/24"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022, Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ # ## Load Balancer parameters to create new public load balancer
5+ add_load_balancer = true
6+ lb_subnet_1_cidr = " 10.0.3.0/24"
7+ lb_min_bandwidth = 10
8+ lb_max_bandwidth = 400
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022, Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ tf_script_version = " 22.4.1-221015142357"
5+ use_marketplace_image = true
6+ listing_id = " ocid1.appcataloglisting.oc1..aaaaaaaawd5ti5ldjzdppppi675onvo3mvjcwt64jjey7rib3beau2ngkl2q"
7+ listing_resource_version = " 22.4.1-ol7.9-22.08.29-221015-1"
8+ instance_image_id = " ocid1.image.oc1..aaaaaaaaocv5frcscwqsk5sfqd5f66pwcf474ufasjmaktqsf7kau4qezyoq"
9+
10+ ucm_listing_id = " ocid1.appcataloglisting.oc1..aaaaaaaa653zc2e4fsem5hhwinmfgnv3xp4dmbq6c6gvf45okxf6xz3smhiq"
11+ ucm_listing_resource_version = " 22.4.1-ol7.9-22.08.29-221015-1"
12+ ucm_instance_image_id = " ocid1.image.oc1..aaaaaaaakygzs4drs6y3fa63axbgjs2abxgx5larzoklqyihmtul7ooegtnq"
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022, Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ service_name = " nonjrf1"
5+
6+ # ## Public/private keys used on the instance
7+ ssh_public_key = " <ssh_public_key>"
8+
9+ # ## Set to true to create OCI IAM policies and dynamic groups required by the WebLogic for OCI stack
10+ create_policies = true
11+ generate_dg_tag = true
12+
13+ # ## Network vcn resource parameters required to create new vcn
14+ network_compartment_id = " ocid1.compartment.xxxxxxxxxxxxxx"
15+ wls_vcn_name = " nonjrf1"
16+ wls_vcn_cidr = " 10.0.0.0/16"
17+
18+ # ## WebLogic credentials to login to the console
19+ wls_admin_user = " weblogic"
20+ wls_admin_password_id = " ocid1.vaultsecret.xxxxxxxxxxxxxxx"
21+
22+ # ## WebLogic server compute instance parameters
23+ instance_shape = " VM.Standard.E4.Flex"
24+ wls_version = " 14.1.1.0"
25+ wls_ocpu_count = 1
26+ wls_node_count = 2
27+ wls_availability_domain_name = " HiGv:US-ASHBURN-AD-2"
28+ wls_subnet_cidr = " 10.0.2.0/24"
29+
30+ # ## Bastion parameters to create new bastion instance
31+ is_bastion_instance_required = true
32+ bastion_subnet_cidr = " 10.0.1.0/24"
33+ bastion_instance_shape = " VM.Standard2.1"
34+
35+ # ## Logging parameter to enable logging service integration for WebLogic instances
36+ use_oci_logging = true
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2022, Oracle and/or its affiliates.
2+ # Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
3+
4+ user_id = " ocid1.user.xxxxxxxxxxxxxx"
5+ fingerprint = " <fingerprint>"
6+ private_key_path = " ~/.oci/oci_api_key_prod.pem"
7+
8+ tenancy_ocid = " ocid1.tenancy.xxxxxxxxxxxxxxxxxx"
9+ region = " us-ashburn-1"
10+ compartment_ocid = " ocid1.compartment.xxxxxxxxxxxxxxxx"
You can’t perform that action at this time.
0 commit comments