This repository was archived by the owner on Jul 25, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Expand file tree Collapse file tree 4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change 11repos :
22- repo : https://github.com/pre-commit/pre-commit-hooks
3- rev : v2.5 .0
3+ rev : v3.2 .0
44 hooks :
55 - id : check-added-large-files
66 args : ['--maxkb=500']
1818 args : ['--allow-missing-credentials']
1919 - id : trailing-whitespace
2020- repo : git://github.com/antonbabenko/pre-commit-terraform
21- rev : v1.29 .0
21+ rev : v1.31 .0
2222 hooks :
2323 - id : terraform_fmt
2424 - id : terraform_docs
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ All notable changes to this project will be documented in this file.
55<a name =" unreleased " ></a >
66## [ Unreleased]
77
8- - update docs and add chglog
8+ - Update module versions to support v3 provider
9+ - Feature/updates ([ #1 ] ( https://github.com/umotif-public/terraform-aws-ecs-fargate-scheduled-task/issues/1 ) )
910
1011
1112<a name =" 1.0.0 " ></a >
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Terraform 0.12. Pin module version to `~> v1.0`. Submit pull-requests to `master
1010``` hcl
1111module "ecs-fargate-scheduled-task" {
1212 source = "umotif-public/ecs-fargate-scheduled-task/aws"
13- version = "~> 1.0"
13+ version = "~> 1.0.0 "
1414
1515 name_prefix = "test-scheduled-task"
1616
@@ -40,13 +40,16 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
4040<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
4141## Requirements
4242
43- No requirements.
43+ | Name | Version |
44+ | ------| ---------|
45+ | terraform | >= 0.12.6, < 0.14 |
46+ | aws | >= 2.45, < 4.0 |
4447
4548## Providers
4649
4750| Name | Version |
4851| ------| ---------|
49- | aws | n/a |
52+ | aws | >= 2.45, < 4.0 |
5053
5154## Inputs
5255
Original file line number Diff line number Diff line change 1+ terraform {
2+ required_version = " >= 0.12.6, < 0.14"
3+
4+ required_providers {
5+ aws = " >= 2.45, < 4.0"
6+ }
7+ }
You can’t perform that action at this time.
0 commit comments