Skip to content

Commit 3785c4f

Browse files
committed
Update Terraform and Rundeck versions in AWS deployment guides
Updated version requirements in AWS and EKS deployment guides to reflect current best practices: - Terraform requirement updated from 1.1.8 to 1.0 or later - AWS provider updated from 4.11.0 to ~> 5.0 - Rundeck container image updated from 4.8.0 to 5.8.0 - EKS Kubernetes version updated from 1.23 to 1.31
1 parent 63620a0 commit 3785c4f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/learning/howto/how2-terra-rd-aws.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ In this guide, we will show you how to deploy Rundeck (or commercial Runbook Aut
88

99
## Prerequisites
1010
To complete the tasks in this guide you’ll first need to install the following:<br>
11-
1. Terraform (available [here](https://www.terraform.io/downloads)).<br>
11+
1. Terraform 1.0 or later (available [here](https://www.terraform.io/downloads)).<br>
1212
2. AWS CLI tool (available [here](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html)), required by the Terraform AWS provider.<br>
13-
3. Configure the AWS CLI using a valid AWS user. Use the `aws configure` command to configure `aws` using your AWS credentials (AWS Access and Secret keys). <br>
13+
3. Configure the AWS CLI using a valid AWS user. Use the `aws configure` command to configure `aws` using your AWS credentials (AWS Access and Secret keys).<br>
1414

1515
## Deployment of Rundeck as a Terraform project
1616
Create an SSH keypair to interact with AWS in order to use the code. Create an example private key named `example` and a public key named `example.pub`, and run the following command in terminal (substituting the path to your project directory):<br>
@@ -50,11 +50,11 @@ provider "aws" {
5050
5151
# Terraform requisites
5252
terraform {
53-
required_version = ">=1.1.8"
53+
required_version = ">=1.0"
5454
required_providers {
5555
aws = {
5656
source = "hashicorp/aws"
57-
version = "4.11.0"
57+
version = "~> 5.0"
5858
}
5959
}
6060
}

docs/learning/howto/how2-terra-rd-eks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ When prompted, provide the AWS access and secret key.<br>
3232
EKS CLI is linked to AWS CLI. If AWS CLI was configured successfully in the previous step, create an EKS cluster with the following command.<br>
3333

3434
```
35-
eksctl create cluster --name oss-test-cluster --version 1.23 --region eu-north-1 --nodegroup-name test-workers --node-type t3.xlarge --nodes 3 --nodes-min 1 --nodes-max 4 --managed
35+
eksctl create cluster --name oss-test-cluster --version 1.31 --region eu-north-1 --nodegroup-name test-workers --node-type t3.xlarge --nodes 3 --nodes-min 1 --nodes-max 4 --managed
3636
```
3737

3838
Included parameters:<br>
@@ -133,7 +133,7 @@ spec:
133133
spec:
134134
containers:
135135
- name: rundeck
136-
image: rundeck/rundeck:4.8.0
136+
image: rundeck/rundeck:5.8.0
137137
env:
138138
- name: RUNDECK_GRAILS_URL
139139
value: "http://service_url:4440"

0 commit comments

Comments
 (0)