File tree Expand file tree Collapse file tree 3 files changed +5
-11
lines changed
cluster_creation_terraform Expand file tree Collapse file tree 3 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ output "oke_cluster_id" {
1515}
1616
1717output "oci_ai_blueprints_link_for_button" {
18- value = var . oci_ai_blueprints_link_variable
18+ value = local . oci_ai_blueprints_link
1919}
2020
2121output "oci_ai_blueprints_link_for_section" {
22- value = var . oci_ai_blueprints_link_variable
22+ value = local . oci_ai_blueprints_link
2323}
2424
2525output "vcn_name" {
Original file line number Diff line number Diff line change @@ -130,9 +130,6 @@ variables:
130130 user_ocid :
131131 visible : false
132132
133- oci_ai_blueprints_link_variable :
134- visible : false
135-
136133
137134outputs :
138135
Original file line number Diff line number Diff line change 11# Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
22# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33#
4- variable "oci_ai_blueprints_link_variable" {
5- type = string
6- default = file (" ${ path . module } /OCI_AI_BLUEPRINTS_LINK" )
7- }
84
95# OKE Variables
106# # OKE Cluster Details
@@ -94,8 +90,9 @@ variable "show_advanced" {
9490
9591# App Name Locals
9692locals {
97- app_name = random_string. app_name_autogen . result
98- app_name_normalized = random_string. app_name_autogen . result
93+ app_name = random_string. app_name_autogen . result
94+ app_name_normalized = random_string. app_name_autogen . result
95+ oci_ai_blueprints_link = file (" ${ path . module } /OCI_AI_BLUEPRINTS_LINK" )
9996}
10097
10198# Dictionary Locals
You can’t perform that action at this time.
0 commit comments