Skip to content

Commit 0f69c0a

Browse files
committed
example basic-cluster updated
Signed-off-by: junior <junior@users.noreply.github.com>
1 parent e9d810a commit 0f69c0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/basic-cluster/oke.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "oke-quickstart" {
2-
source = "github.com/oracle-quickstart/terraform-oci-oke-quickstart?ref=0.8.2"
2+
source = "github.com/oracle-quickstart/terraform-oci-oke-quickstart?ref=0.8.3"
33

44
# Oracle Cloud Infrastructure Tenancy and Compartment OCID
55
tenancy_ocid = var.tenancy_ocid

examples/basic-cluster/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# Deployment outputs
66
output "deploy_id" {
7-
value = local.deploy_id
7+
value = module.oke-quickstart.deploy_id
88
}
99

1010
# OKE Outputs
@@ -33,6 +33,6 @@ output "dev" {
3333
# Use of this resource for production deployments is not recommended.
3434
# Instead, generate a private key file outside of Terraform and distribute it securely to the system where Terraform will be run.
3535
output "generated_private_key_pem" {
36-
value = var.generate_public_ssh_key ? tls_private_key.oke_worker_node_ssh_key.private_key_pem : "No Keys Auto Generated"
36+
value = module.oke-quickstart.generated_private_key_pem
3737
sensitive = true
3838
}

0 commit comments

Comments
 (0)