Skip to content

Commit

Permalink
Merge branch 'master' into feature-vault-challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen authored Jan 7, 2024
2 parents 62d1c04 + 3ed4b41 commit 774f3f6
Show file tree
Hide file tree
Showing 13 changed files with 182 additions and 181 deletions.
88 changes: 44 additions & 44 deletions aws/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions aws/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,25 +111,25 @@ The documentation below is auto-generated to give insight on what's created via
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.29.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 5.31.0 |
| <a name="requirement_http"></a> [http](#requirement\_http) | ~> 3.4.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.5.1 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.6.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.29.0 |
| <a name="provider_http"></a> [http](#provider\_http) | 3.4.0 |
| <a name="provider_random"></a> [random](#provider\_random) | 3.5.1 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.31.0 |
| <a name="provider_http"></a> [http](#provider\_http) | 3.4.1 |
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.0 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_ebs_csi_irsa_role"></a> [ebs\_csi\_irsa\_role](#module\_ebs\_csi\_irsa\_role) | terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks | ~> 5.5 |
| <a name="module_eks"></a> [eks](#module\_eks) | terraform-aws-modules/eks/aws | 19.20.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.2.0 |
| <a name="module_eks"></a> [eks](#module\_eks) | terraform-aws-modules/eks/aws | 19.21.0 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.4.0 |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ data "aws_availability_zones" "available" {}

module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 5.2.0"
version = "~> 5.4.0"

name = "${var.cluster_name}-vpc"
cidr = local.vpc_cidr
Expand All @@ -65,7 +65,7 @@ module "vpc" {

module "eks" {
source = "terraform-aws-modules/eks/aws"
version = "19.20.0"
version = "19.21.0"

cluster_name = var.cluster_name
cluster_version = var.cluster_version
Expand Down
4 changes: 2 additions & 2 deletions aws/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.29.0"
version = "~> 5.31.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.5.1"
version = "~> 3.6.0"
}
http = {
source = "hashicorp/http"
Expand Down
88 changes: 44 additions & 44 deletions azure/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,17 +106,17 @@ The documentation below is auto-generated to give insight on what's created via
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.1 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.83.0 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.85.0 |
| <a name="requirement_http"></a> [http](#requirement\_http) | ~> 3.4.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.5.1 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.6.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | 3.83.0 |
| <a name="provider_http"></a> [http](#provider\_http) | 3.4.0 |
| <a name="provider_random"></a> [random](#provider\_random) | 3.5.1 |
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | 3.85.0 |
| <a name="provider_http"></a> [http](#provider\_http) | 3.4.1 |
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.0 |

## Modules

Expand Down
4 changes: 2 additions & 2 deletions azure/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ terraform {
required_providers {
random = {
source = "hashicorp/random"
version = "~> 3.5.1"
version = "~> 3.6.0"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.83.0"
version = "~> 3.85.0"
}
http = {
source = "hashicorp/http"
Expand Down
Loading

0 comments on commit 774f3f6

Please sign in to comment.