Skip to content

WLS 14.1.2 Stack with secured production mode implemented #305

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ locals {
fmw_console_app_url = local.requires_JRF ? format(
"https://%s:%s/em",
local.admin_ip_address,
var.wls_extern_ssl_admin_port,
local.wls_extern_ssl_admin_port,
) : ""

use_apm_service = (var.use_apm_service || var.use_autoscaling)
Expand Down
1 change: 1 addition & 0 deletions terraform/modules/compute/wls_compute/wls_compute.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ module "wls-instances" {
wls_edition = var.wls_edition
is_bastion_instance_required = var.is_bastion_instance_required
create_policies = var.create_policies
enable_restful_management_services = var.wls_version == "14.1.2.0" ? true : false

# Secured Production Mode
configure_secure_mode = var.configure_secure_mode
Expand Down