Skip to content

Commit 6ead9da

Browse files
committed
version bump
Signed-off-by: junior <junior@users.noreply.github.com>
1 parent a6f9fac commit 6ead9da

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.1
1+
0.9.2

modules/oke/main.tf

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
# Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2021-2023 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.
3-
#
3+
#
4+
5+
# File Version: 0.9.2
46

57
resource "oci_containerengine_cluster" "oke_cluster" {
68
compartment_id = local.oke_compartment_ocid
79
kubernetes_version = (var.k8s_version == "Latest") ? local.cluster_k8s_latest_version : var.k8s_version
810
name = "${local.app_name} (${local.deploy_id})"
911
vcn_id = var.vcn_id
1012
kms_key_id = var.oci_vault_key_id_oke_secrets != "" ? var.oci_vault_key_id_oke_secrets : null
11-
# type = var.cluster_type
12-
freeform_tags = var.cluster_tags.freeformTags
13-
defined_tags = var.cluster_tags.definedTags
13+
type = var.cluster_type
14+
freeform_tags = var.cluster_tags.freeformTags
15+
defined_tags = var.cluster_tags.definedTags
1416

1517
endpoint_config {
1618
is_public_ip_enabled = (var.cluster_endpoint_visibility == "Private") ? false : true

0 commit comments

Comments
 (0)