Skip to content
This repository was archived by the owner on Jul 25, 2023. It is now read-only.

Commit 8d7f286

Browse files
authored
Feature/v3 provider support (#2)
* Update module versions to support v3 provider * update CHANGELOG
1 parent 1b16d7b commit 8d7f286

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
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']
@@ -18,7 +18,7 @@ repos:
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

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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>

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Terraform 0.12. Pin module version to `~> v1.0`. Submit pull-requests to `master
1010
```hcl
1111
module "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

versions.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
terraform {
2+
required_version = ">= 0.12.6, < 0.14"
3+
4+
required_providers {
5+
aws = ">= 2.45, < 4.0"
6+
}
7+
}

0 commit comments

Comments
 (0)