Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

BATIAI-1750 - Update TF provider version #10

Merged
merged 4 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.0] - 2023-07-24
Updates all the TF AWS providers to 5.8.0 and points at 6.0.0 of gatus (with Fargate 10.0.0)

## [5.0.0] - 2023-03-17
### Breaking
- Now will create the ECS cluster for you unless disabled with `create_ecs_cluster = false`
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 3.0"
version = ">= 5.0"
}
}
}

module "gatus" {
source = "USSBA/easy-fargate-service/aws"
version = "~> 9.2"
version = "~> 10.0.0"
family = var.service_name
task_policy_json = data.aws_iam_policy_document.fargate.json
container_definitions = [
Expand Down