You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="The label of the availability domain where the compute will be created"
27
27
}
28
28
29
+
variable"place_all_compute_in_same_ad" {
30
+
type=bool
31
+
description="Set to true if you want to use the same Availability Domain for all Compute instances as the WebLogic Administration Server's Compute instance. Otherwise, instances will be distributed across Availability Domains."
32
+
default=false
33
+
}
34
+
29
35
variable"instance_image_id" {
30
36
type=string
31
37
description="The OCID of the image used to create the compute instance"
# These policy statements are required for enabling the plugin
53
+
plugin_policy_statement1="Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to manage instance-agent-plugins in compartment id ${var.compartment_id}"
54
+
plugin_policy_statement2="Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to use wlms-managed-instance-plugins in tenancy"
#Policies for WLS instance principal dynamic group
53
58
autoscaling_statement1=var.use_autoscaling?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to use repos in tenancy":""
54
59
autoscaling_statement2=var.use_autoscaling?"Allow dynamic-group ${oci_identity_dynamic_group.wlsc_instance_principal_group.name} to manage functions-family in compartment id ${var.compartment_id}":""
description="Set to true if you want to use the same Availability Domain for all Compute instances as the WebLogic Administration Server's Compute instance. Otherwise, instances will be distributed across Availability Domains."
81
+
default=false
82
+
}
83
+
78
84
variable"assign_weblogic_public_ip" {
79
85
type=bool
80
86
description="Set to true if the WebLogic compute instances will be created in a public subnet and should have a public IP"
Copy file name to clipboardExpand all lines: terraform/schema.yaml
+14
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,7 @@ groupings:
96
96
#- ${image_mode}
97
97
#- ${terms_and_conditions}
98
98
- ${wls_availability_domain_name}
99
+
- ${place_all_compute_in_same_ad}
99
100
- ${wls_subnet_id}
100
101
- ${wls_subnet_cidr}
101
102
- ${existing_admin_server_nsg_id}
@@ -458,6 +459,19 @@ variables:
458
459
- ${subnet_span}
459
460
- "Regional Subnet"
460
461
462
+
place_all_compute_in_same_ad:
463
+
visible:
464
+
and:
465
+
- ${orm_create_mode}
466
+
- eq:
467
+
- ${subnet_span}
468
+
- "Regional Subnet"
469
+
type: boolean
470
+
required: true
471
+
default: false
472
+
title: "Use Same Availability Domain for all Compute Instances"
473
+
description: "Use the same Availability Domain for all Compute instances as that of the WebLogic Administration Server's Compute instance. If this option is not selected, the compute instances will be distributed across Availability Domains."
Copy file name to clipboardExpand all lines: terraform/schema_14110.yaml
+14
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ groupings:
69
69
#- ${image_mode}
70
70
#- ${terms_and_conditions}
71
71
- ${wls_availability_domain_name}
72
+
- ${place_all_compute_in_same_ad}
72
73
- ${wls_subnet_id}
73
74
- ${wls_subnet_cidr}
74
75
- ${existing_admin_server_nsg_id}
@@ -456,6 +457,19 @@ variables:
456
457
- ${subnet_span}
457
458
- "Regional Subnet"
458
459
460
+
place_all_compute_in_same_ad:
461
+
visible:
462
+
and:
463
+
- ${orm_create_mode}
464
+
- eq:
465
+
- ${subnet_span}
466
+
- "Regional Subnet"
467
+
type: boolean
468
+
required: true
469
+
default: false
470
+
title: "Use Same Availability Domain for all Compute Instances"
471
+
description: "Use the same Availability Domain for all Compute instances as that of the WebLogic Administration Server's Compute instance. If this option is not selected, the compute instances will be distributed across Availability Domains."
0 commit comments