Skip to content

Commit c72a4f2

Browse files
authored
docs: updated instruction for when using the remote module from (#531)
* docs: updated instruction for when using the remote module from HashiCorp registry to point to oracle namespace. Signed-off-by: Ali Mukadam <ali.mukadam@oracle.com> * fix: no regions variable anymore. changed to region and home_region Signed-off-by: Ali Mukadam <ali.mukadam@oracle.com> * fix: removed regions variable Signed-off-by: Ali Mukadam <ali.mukadam@oracle.com> * fix: use existing region variables instead Signed-off-by: Ali Mukadam <ali.mukadam@oracle.com>
1 parent 57760cd commit c72a4f2

File tree

2 files changed

+108
-2
lines changed

2 files changed

+108
-2
lines changed

CHANGELOG.adoc

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,95 @@ All notable changes to this project are documented in this file.
77

88
The format is based on {uri-changelog}[Keep a Changelog].
99

10+
== 4.2.4
11+
=== Changes
12+
* feat: added support for OKE images for faster worker node provisioning by @hyder in #529
13+
14+
== 4.2.3
15+
=== Changes
16+
* create_policies variable to turn off any potential policy creation tempt (#325) by @slmjy in #442
17+
* fix: cloudinit changes to allow user to pass custom script by @karthicgit in #502
18+
* Optional VCN by @nlamirault in #467
19+
* fix: remove freeform tags iam.tf by @karthicgit in #523
20+
* feat: upgraded default Kubernetes version to v1.23.4 by @hyder in #526
21+
22+
== 4.2.2
23+
=== Changes
24+
* fix: added default fss subnet in subnets variable by @karthicgit in #513
25+
* fix: added rule for internal lb. by @hyder in #504
26+
* fix: autonomous cloud-init template should not be used by @hyder in #517
27+
28+
== 4.2.1
29+
=== Changes
30+
* fix: changed oci provider namespace in submodules by @hyder in #508
31+
32+
== 4.2.0
33+
=== Changes
34+
* feat: renamed kms_key_id to cluster_kms_key_id to avoid confusion. by @hyder in #487
35+
* feat: Added fss storage module. by @karthicgit in #491
36+
* fix: Added additional rule to workers nsg to allow ssh by @hyder in #498
37+
* removed null resource for localkubeconfig and helm by @karthicgit in #500
38+
* feat: upgrade VCN module to 3.4.0 by @snafuz in #486
39+
* changed provider to oracle/oci by @hyder in #506
40+
41+
== 4.1.6
42+
=== Changes
43+
* docs: updated dependencies chart by @hyder in #482
44+
* feat: Added support for cloud-init in node pools by @hyder in #484
45+
* feat: Added support for expanding boot volume size of worker nodes by @hyder in #484
46+
47+
== 4.1.5
48+
=== Changes
49+
* fix: fixed empty policy issue and added oke-tags to freeform_tags in terraform.tfvars.example by @KSN2510 in #477
50+
51+
== 4.1.4
52+
=== Changes
53+
* feat: Added support for adding boot/block volume and in-transit encryption for Operator by @KSN2510 in #472
54+
55+
== 4.1.3
56+
=== Changes
57+
* fix: Policies added for nodepool's boot volume and block volume encryption by @KSN2510 in #461
58+
* feat: Updated the version of Operator from 3.0.1 to 3.0.2 by @KSN2510 in #463
59+
60+
== 4.1.2
61+
=== Changes
62+
* feat: dynamically generate the OCIR url using the region name by @snafuz in #454
63+
* feat: Added support for in-transit encryption in OKE and custom kms_key for boot volume encryption support by @KSN2510 in #456
64+
65+
== 4.1.1
66+
=== Changes
67+
* fix: File provisioner path ~ changed to /home/opc by @karthicgit in #451
68+
* fix: Change default Kubernetes version to v1.21.5 by @karthicgit in #453
69+
70+
== 4.1.0
71+
=== Changes
72+
* feat: added OPA Gatekeeper by @karthicgit in #439
73+
* updated the operator version to 3.0.1 from 3.0.0 to disable OSMS by @KSN2510 in #444
74+
* feat: added support for new OCI regions: Milan, Stockholm, Abu Dhabi and Vinhedo by @snafuz in #441
75+
* feat: upgraded olcne package so we can have latest version of kubectl by @hyder in #446
76+
77+
== 4.0.4
78+
=== Changes
79+
* fix: added 1 additional rule to allow egress traffic for load balancer health checks to work by @snafuz in #438
80+
81+
== 4.0.3
82+
=== Changes
83+
* others: added example for automated Verrazzano installation. Closes #435 by @hyder in https://github.com/oracle-terraform-modules/terraform-oci-oke/pull/437/files
84+
* feat: enhancements to token_helper for kubectl. Closes #429 by @hyder in #432
85+
* fix: Created bin directory in /home/opc before moving token_helper script there. by @hyder in #437
86+
87+
== 4.0.2
88+
=== Changes
89+
* others: added 3rd party attributions by @hyder in #428
90+
* fix: added 1 additional rule to allow control plane to be accessed by specified list of cidr blocks by @hyder in #431
91+
92+
== 4.0.1
93+
=== Changes
94+
* Added home provider argument in remote module usage example (#421)
95+
96+
=== New Features
97+
* Added Marseille, Singapore and Jerusalem as supported regions (#423)
98+
1099
== 4.0.0
11100
=== Breaking changes
12101
* Set minimum version to Terraform 1.0.0

docs/quickstart.adoc

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,29 @@ terraform apply
133133

134134
. In your project root, create a variables.tf file and add variables for your project. You can copy the existing {uri-variables}[variables.tf] in the OKE module root.
135135

136+
. In your project root, create a versions.tf file and add the following:
137+
138+
+
139+
----
140+
terraform {
141+
required_providers {
142+
oci = {
143+
source = "oracle/oci"
144+
configuration_aliases = [oci.home]
145+
version = ">= 4.67.3"
146+
}
147+
}
148+
required_version = ">= 1.0.0"
149+
}
150+
----
151+
136152
. In your project root, create a main.tf file and add the following:
137153

138154
+
139155
----
140156
module "oke" {
141157
source = "oracle-terraform-modules/oke/oci"
142-
version = "4.0.0"
158+
version = "4.2.4"
143159
# insert the 9 required variables here
144160
}
145161
----
@@ -159,7 +175,8 @@ module "oke" {
159175
ssh_public_key_path = var.ssh_public_key_path
160176
161177
label_prefix = var.label_prefix
162-
regions = var.regions
178+
home_region = var.home_region
179+
region = var.region
163180
164181
vcn_dns_label = var.vcn_dns_label
165182
vcn_name = var.vcn_name

0 commit comments

Comments
 (0)