Skip to content

Commit

Permalink
feat: Update TLS provider and remove unnecessary cloud init version r…
Browse files Browse the repository at this point in the history
…equirements (#1966)
  • Loading branch information
bryantbiggs authored Mar 25, 2022
1 parent 7aed57b commit 0269d38
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -807,14 +807,14 @@ Full contributing [guidelines are covered here](https://github.com/terraform-aws
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.72 |
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 2.2 |
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | >= 3.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.72 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 2.2 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | >= 3.0 |

## Modules

Expand Down
9 changes: 5 additions & 4 deletions examples/eks_managed_node_group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -568,10 +568,11 @@ resource "aws_launch_template" "external" {
enabled = true
}

network_interfaces {
associate_public_ip_address = false
delete_on_termination = true
}
# Disabling due to https://github.com/hashicorp/terraform-provider-aws/issues/23766
# network_interfaces {
# associate_public_ip_address = false
# delete_on_termination = true
# }

# if you want to use a custom AMI
# image_id = var.ami_id
Expand Down
1 change: 0 additions & 1 deletion modules/eks-managed-node-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ module "eks_managed_node_group" {
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.72 |
| <a name="requirement_cloudinit"></a> [cloudinit](#requirement\_cloudinit) | >= 2.0 |

## Providers

Expand Down
4 changes: 0 additions & 4 deletions modules/eks-managed-node-group/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,5 @@ terraform {
source = "hashicorp/aws"
version = ">= 3.72"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.0"
}
}
}
1 change: 0 additions & 1 deletion modules/self-managed-node-group/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ module "self_managed_node_group" {
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.1 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.72 |
| <a name="requirement_cloudinit"></a> [cloudinit](#requirement\_cloudinit) | >= 2.0 |

## Providers

Expand Down
4 changes: 0 additions & 4 deletions modules/self-managed-node-group/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,5 @@ terraform {
source = "hashicorp/aws"
version = ">= 3.72"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.0"
}
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {
}
tls = {
source = "hashicorp/tls"
version = ">= 2.2"
version = ">= 3.0"
}
}
}

0 comments on commit 0269d38

Please sign in to comment.