Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/ec2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module "ec2" {
| Name | Source | Version |
|------|--------|---------|
| <a name="module_ec2"></a> [ec2](#module\_ec2) | terraform-aws-modules/ec2-instance/aws | ~> 6.0 |
| <a name="module_key_pair"></a> [key\_pair](#module\_key\_pair) | terraform-aws-modules/key-pair/aws | 2.1.1 |
| <a name="module_key_pair"></a> [key\_pair](#module\_key\_pair) | terraform-aws-modules/key-pair/aws | 3.0.0 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/ec2/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "random_shuffle" "subnet" {

module "key_pair" {
source = "terraform-aws-modules/key-pair/aws"
version = "2.1.1"
version = "3.0.0"
create = var.create_key_pair
key_name = local.key_name
create_private_key = true
Expand Down
Loading