Skip to content

Commit

Permalink
Bump aws ~> 4.2 (#61)
Browse files Browse the repository at this point in the history
* Remove drone badge

* Bump aws to ~> 4.2

* fix lint failures for output.tf

* fix aws version provider issue

* updated vpc module to 2.58.0 to remove aws version hard requirement

Co-authored-by: pgvishnuram <vishnu@astronomer.io>
  • Loading branch information
danielhoherd and pgvishnuram authored Feb 23, 2022
1 parent 88e8672 commit 4073a9c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Terraform Module for Astronomer for AWS

[![Build Status](https://cloud.drone.io/api/badges/astronomer/terraform-aws-astronomer-aws/status.svg)](https://cloud.drone.io/astronomer/terraform-aws-astronomer-aws)

[Terraform](https://www.terraform.io/) is a simple and powerful tool that lets us write, plan and create infrastructure as code. This code will allow you to efficiently provision the infrastructure required to run the Astronomer platform.

## Features
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {
}
aws = {
source = "hashicorp/aws"
version = "~> 3.0"
version = "~> 4.2"
}
http = {
source = "hashicorp/http"
Expand Down
2 changes: 1 addition & 1 deletion vpc.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
module "vpc" {

source = "terraform-aws-modules/vpc/aws"
version = "2.47.0"
version = "2.58.0"

create_vpc = var.vpc_id == "" ? true : false

Expand Down

0 comments on commit 4073a9c

Please sign in to comment.