Skip to content

Commit

Permalink
Updated copyright headers, docs formatting and instructions.
Browse files Browse the repository at this point in the history
Signed-off-by: Ali Mukadam <[email protected]>
  • Loading branch information
hyder committed Oct 25, 2021
1 parent 2154986 commit 251ca7c
Show file tree
Hide file tree
Showing 52 changed files with 80 additions and 74 deletions.
31 changes: 16 additions & 15 deletions docs/codingconventions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,31 @@ endif::[]
:toc:

:uri-terraform-standard-module-structure: https://www.terraform.io/docs/language/modules/develop/structure.html
:uri-oci-security-guide: https://docs.oracle.com/en-us/iaas/Content/Security/Concepts/security_guide.htm

This is a list of coding conventions you should observe when contributing code for this project.

Current conventions:
This project adheres to the following conventions:

- module structure
- adopting the right case type
- good names for files and terraform objects (resources, variables, outputs)
- good names for files and Terraform objects (resources, variables, outputs)
It is not an exhaustive list and it will be updated as we go. In the mean time, your PR reviewer may suggest conventions that are not listed here.
New conventions may be added to the list in future. All contributions should adhere to the list as published when the contribution is made.

Use PR comments and the GitHub suggestion feature to agree on the final result.

== Module Structure

- We adhere to the {uri-terraform-standard-module-structure}[Terraform Standard Module Structure]
- Any nested module calls should be in the main file: `main.tf` is the primary entrypoint of the module
- All variables and ouputs declarations should be in `variables.tf` and `outputs.tf`
- All variables and outputs should have descriptions
- Nested modules should exist under the `modules/` folder
- Examples of using the module should exist under the `examples/` folder and have a README to explain the goal and usage of the example
- This project adheres to the {uri-terraform-standard-module-structure}[Terraform Standard Module Structure]
- Any nested module calls must be in the main file: `main.tf` is the primary entrypoint of the module
- All variables declarations must be in `variables.tf`
- All ouputs declarations must be in `outputs.tf`
- All variables and outputs must have descriptions
- Nested modules must exist under the `modules/` folder
- Examples of how to use the module must be placed in the examples/ folder and include documentation that explains the purpose and outcomes of each example.

== Documentation format

We use https://asciidoc.org/[AsciiDoc] with the `*.adoc` file extension. The only exception is for the README files that need to be displayed on the Terraform Registry: as the Terraform Registry does not support AsciiDoc, the `README` and certain other documentation must be available in Markdown format.
This project uses https://asciidoc.org/[AsciiDoc] with the `*.adoc` file extension. The only exception is for the README files that need to be displayed on the Terraform Registry: as the Terraform Registry does not support AsciiDoc, the `README` and certain other documentation must be available in Markdown format.

[NOTE]
====
Expand Down Expand Up @@ -74,7 +74,7 @@ Links that are used multiple times must be defined in the header using the `:uri
====

=== Terraform registry requirements
=== HashiCorp Terraform Registry

- README files must be in Markdown format
- All links must use absolute path, relative links are not supported
Expand All @@ -100,7 +100,6 @@ variable "xyz" {

When defining variables:

. do not hesitate to insert a brief comment in the variable block if it helps to clarify your intention.
. the type should always be specified. We prefer:
.. string
.. boolean
Expand All @@ -111,8 +110,10 @@ When defining variables:
.. match the type specified
.. be reflected in terraform.tfvars.example

Do not hesitate to insert a brief comment in the variable block if it helps to clarify your intention.

WARNING: No default value for `compartment_id` or any other variables related to provider authentication in module or examples files. The user will have to explicitly set these values.

=== Examples

Examples should promote good practices as much as possible e.g. avoid creating resources in the tenancy root compartment.
Examples should promote good practices as much as possible e.g. avoid creating resources in the tenancy root compartment. Please review the {uri-oci-security-guide}[OCI Security Guide].
22 changes: 11 additions & 11 deletions docs/upgrade.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,22 @@
:uri-upgrade-oke: https://docs.cloud.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengupgradingk8sworkernode.htm
:uri-variables: {uri-rel-file-base}/variables.tf

This section documents how to upgrade the OKE Cluster using this project. At a high level, upgrading the OKE cluster is fairly straightforward:
This section documents how to upgrade the OKE cluster using this project. At a high level, upgrading the OKE cluster is fairly straightforward:

1. Upgrade the control plane nodes
2. Upgrade the worker nodes using either {uri-upgrade-oke}[in-place or out-of-place] approach
This has to be done in order.

This project supports *only* the out-of-place method of upgrading the cluster and worker nodes at the moment.
NOTE: The out-of-place method is currently the _only_ supported method of upgrading a cluster and worker nodes.

=== Pre-requisites
== Pre-requisites

. bastion host is created
. operator host is created
. instance_principal is enabled on operator

=== Upgrading the control plane nodes
== Upgrading the control plane nodes

. Locate your `kubernetes_version` in your terraform variable file and change:

Expand Down Expand Up @@ -68,9 +68,9 @@ terraform apply --target=module.oke.k8s_cluster
----
****

=== Upgrading the worker nodes using the out-of-place method
== Upgrading the worker nodes using the out-of-place method

==== Add new node pools
=== Add new node pools
1. Add a new node pool in your list of node pools e.g. change
+
[source,bash]
Expand All @@ -92,11 +92,11 @@ node_pools = {
}
----

and run terraform apply again. (See note above about targeted apply). If you are using Kubernetes labels for your existing applications, you will need to ensure the new node pools also have the same labels. Refer to the `terraform.tfvars.example` file for the format to specify the labels.
and run `terraform apply` again. (See note above about targeted apply). If you are using Kubernetes labels for your existing applications, you will need to ensure the new node pools also have the same labels. Refer to the `terraform.tfvars.example` file for the format to specify the labels.

When node pools 3 and 4 are created, they will be created with the newer cluster version of Kubernetes. Since you have already upgrade your cluster to `v1.20.8`, node pools 3 and 4 will be running Kubernetes v1.20.8

==== Drain older nodepools
=== Drain older nodepools
. Set `upgrade_nodepool=true`. This will instruct the OKE cluster that some node pools will be drained.

. Provide the list of node pools to drain. This should usually be only the old node pools. You don't need to upgrade all the node pools at once.
Expand All @@ -106,15 +106,15 @@ When node pools 3 and 4 are created, they will be created with the newer cluster
node_pools_to_drain = [ "np1", "np2"]
----

. Run terraform apply (see note above about targeted apply):
. Run `terraform apply` (see note above about targeted apply):

+
----
terraform apply
----

==== Delete node pools with older Kuberntes version
When you are ready, you can now delete the old node pools by them from the list of node pools:
=== Delete node pools with older Kubernetes version
When you are ready, you can now delete the old node pools by removing them from the list of node pools:

+
----
Expand Down
2 changes: 1 addition & 1 deletion locals.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

locals {
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

module "vcn" {
Expand Down
2 changes: 1 addition & 1 deletion modules/bastionsvc/bastion.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "oci_bastion_bastion" "bastion" {
Expand Down
2 changes: 1 addition & 1 deletion modules/bastionsvc/datasources.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

data "oci_core_subnets" "bastion_svc_target_subnet" {
Expand Down
2 changes: 1 addition & 1 deletion modules/bastionsvc/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

# general oci
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/activeworker.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "check_worker_active" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/calico.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
## Copyright 2017, 2021 Oracle Corporation and/or affiliates.
## Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "install_calico" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/datasources.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

data "oci_identity_tenancy" "tenancy" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/drain.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "drain_nodes" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/iam.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

terraform {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/k8stools.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "install_kubectl_operator" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/kubeconfig.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

data "oci_containerengine_cluster_kube_config" "kube_config" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/locals.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

locals {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/metricserver.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "enable_metric_server" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/check_worker_active.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

rm -f all_node.active
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f .sa_completed ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/drain.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2020, Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2020, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

for node in $(cat drainlist.txt)
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/drainlist.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/python3
# Copyright 2017, 2020, Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2020, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
# Derived and adapted from https://www.ateam-oracle.com/secure-way-of-managing-secrets-in-oci

Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/generate_kubeconfig.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f $HOME/.kube/config ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/install_calico.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f .calico_completed ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/install_helm.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f .helm_completed ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/install_kubectl.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f .kubectl_completed ]; then
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ! -f .metrics_completed ]; then
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

kubectl config set-credentials "user-${cluster-id-11}" --exec-command="./token_helper.sh" \
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/secret.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2020, Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2020, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

if [ ${secret_namespace} != default ]; then
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/scripts/token_helper.template.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

TOKEN_FILE=~/.kube/TOKEN
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

oci iam dynamic-group update --dynamic-group-id ${dynamic_group_id} --matching-rule "${dynamic_group_rule}" --region ${home_region}
2 changes: 1 addition & 1 deletion modules/extensions/secrets.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# # Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# # Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# # Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "secret" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/serviceaccount.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2019 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2019 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "null_resource" "create_service_account" {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/templates.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

locals {
Expand Down
2 changes: 1 addition & 1 deletion modules/extensions/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2019 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2019 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

# oci provider
Expand Down
2 changes: 1 addition & 1 deletion modules/network/datasources.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

data "oci_core_services" "all_oci_services" {
Expand Down
2 changes: 1 addition & 1 deletion modules/network/locals.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

locals {
Expand Down
2 changes: 1 addition & 1 deletion modules/network/nsgs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021, Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021, Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

# control plane nsg and rules
Expand Down
2 changes: 1 addition & 1 deletion modules/network/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

output "subnet_ids" {
Expand Down
2 changes: 2 additions & 0 deletions modules/network/seclist.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
resource "oci_core_security_list" "control_plane_seclist" {
compartment_id = var.compartment_id
display_name = var.label_prefix == "none" ? "control-plane" : "${var.label_prefix}-control-plane"
Expand Down
2 changes: 1 addition & 1 deletion modules/network/subnets.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

resource "oci_core_subnet" "cp" {
Expand Down
2 changes: 1 addition & 1 deletion modules/network/variables.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

# general oci parameters
Expand Down
2 changes: 1 addition & 1 deletion modules/oke/cluster.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

# 30s delay to allow policies to take effect globally
Expand Down
2 changes: 1 addition & 1 deletion modules/oke/datasources.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017, 2021 Oracle Corporation and/or affiliates. All rights reserved.
# Copyright 2017, 2021 Oracle Corporation and/or affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl

data "oci_identity_availability_domains" "ad_list" {
Expand Down
Loading

0 comments on commit 251ca7c

Please sign in to comment.