Skip to content

Commit

Permalink
chore(deps): update terraform modules
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jul 17, 2023
1 parent 45c857c commit cd3b58b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion infrastructure/docs/client-node/instances.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "aws_iam_instance_profile" "client_profile" {
# VMs
module "vm" {
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 4.1.4"
version = "~> 4.5.0"
for_each = toset(var.vm_names)
name = each.key
ami = var.ami
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_key_pair" "ssh_key" {
# master
module "master" {
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 3.3.0"
version = "~> 3.6.0"
name = "master"
ami = "ami-00f7e5c52c0f43726"
instance_type = "t3a.xlarge"
Expand All @@ -24,7 +24,7 @@ module "master" {
module "worker" {
count = var.nb_workers
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 3.3.0"
version = "~> 3.6.0"
name = "worker-${count.index}"
ami = "ami-00f7e5c52c0f43726"
instance_type = "t3a.xlarge"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_key_pair" "ssh_key" {
# master
module "master" {
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 3.3.0"
version = "~> 3.6.0"
name = "master"
ami = "ami-00f7e5c52c0f43726"
instance_type = "t3a.xlarge"
Expand All @@ -24,7 +24,7 @@ module "master" {
module "worker" {
count = var.nb_workers
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 3.3.0"
version = "~> 3.6.0"
name = "worker-${count.index}"
ami = "ami-00f7e5c52c0f43726"
instance_type = "t3a.xlarge"
Expand Down

0 comments on commit cd3b58b

Please sign in to comment.