generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented [JCS-13348] - Use RMS private endpoint in lieu of bastion host Tested following scenarios New vcn/bastion - provisioning and scale out Existing vcn/new subnets - provisioning and scale out Existing vcn/existing subnets/new rms endpoint - provisioning and scaleout Existing vcn/existing subnets/existing rms endpoint - provisioning and scale out Existing vcn/existing subnets/both rms and bastion enabled - provisioning and scale out Existing vcn/existing subnets/ bastion and rms enabled - provisioning and scale out Existing vcn/existing subnets/ bastion and rms disabled - provisioning and scale out cli changes Tested cli with bastion Updated the builds for srg changes Tested auto scaling with rms endpoint
- Loading branch information
Showing
19 changed files
with
346 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Copyright (c) 2023, Oracle and/or its affiliates. | ||
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl. | ||
|
||
|
||
// Resolves the private IP of the customer's private endpoint to a NAT IP. Used as the host address in the "remote-exec" resource | ||
data "oci_resourcemanager_private_endpoint_reachable_ip" "private_endpoint_reachable_ips" { | ||
count = var.is_rms_private_endpoint_required ? var.num_vm_instances : 0 | ||
private_endpoint_id = var.rms_private_endpoint_id | ||
private_ip = var.host_ips[count.index] | ||
} |
Oops, something went wrong.