Skip to content

Commit 78264e2

Browse files
author
Abdul Wahid
authored
Add documentation (#18)
1 parent 4a8ab70 commit 78264e2

File tree

5 files changed

+49
-13
lines changed

5 files changed

+49
-13
lines changed

‎.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
*.DS_Store
22
errored.tfstate
3-
.terraform
3+
*.terraform
44
crash.log
55
terraform.tfstate
66
*.tfstate*
7-
terraform.tfvars
7+
terraform.tfvars
8+
*.terraform.lock.hcl

‎.pre-commit-config.yaml

Lines changed: 3 additions & 3 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: v4.0.1
3+
rev: v4.2.0
44
hooks:
55
- id: check-added-large-files
66
args: ['--maxkb=500']
@@ -17,8 +17,8 @@ repos:
1717
- id: detect-aws-credentials
1818
args: ['--allow-missing-credentials']
1919
- id: trailing-whitespace
20-
- repo: git://github.com/antonbabenko/pre-commit-terraform
21-
rev: v1.50.0
20+
- repo: https://github.com/antonbabenko/pre-commit-terraform
21+
rev: v1.71.0
2222
hooks:
2323
- id: terraform_fmt
2424
- id: terraform_docs

‎CHANGELOG.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
55
<a name="unreleased"></a>
66
## [Unreleased]
77

8+
- Allow setting time_zone for ASG schedules ([#17](https://github.com/umotif-public/terraform-aws-bastion/issues/17))
9+
10+
11+
<a name="2.2.0"></a>
12+
## [2.2.0] - 2021-06-04
13+
14+
- Add tags to IAM profile ([#14](https://github.com/umotif-public/terraform-aws-bastion/issues/14))
15+
16+
17+
<a name="2.1.0"></a>
18+
## [2.1.0] - 2021-04-23
19+
20+
- Update AWS partition sourcing ([#13](https://github.com/umotif-public/terraform-aws-bastion/issues/13))
21+
22+
23+
<a name="2.0.3"></a>
24+
## [2.0.3] - 2021-02-19
25+
26+
- Update bastion-userdata.sh ([#12](https://github.com/umotif-public/terraform-aws-bastion/issues/12))
27+
28+
29+
<a name="2.0.2"></a>
30+
## [2.0.2] - 2021-02-19
31+
32+
- Update bastion-userdata.sh ([#11](https://github.com/umotif-public/terraform-aws-bastion/issues/11))
33+
34+
35+
<a name="2.0.1"></a>
36+
## [2.0.1] - 2021-02-19
37+
38+
- Fix bastion policy to handle china partition ([#10](https://github.com/umotif-public/terraform-aws-bastion/issues/10))
839

940

1041
<a name="2.0.0"></a>
@@ -88,7 +119,12 @@ All notable changes to this project will be documented in this file.
88119
- Initial commit
89120

90121

91-
[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.0...HEAD
122+
[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.2.0...HEAD
123+
[2.2.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.1.0...2.2.0
124+
[2.1.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.3...2.1.0
125+
[2.0.3]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.2...2.0.3
126+
[2.0.2]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.1...2.0.2
127+
[2.0.1]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.0...2.0.1
92128
[2.0.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.5.0...2.0.0
93129
[1.5.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.4.2...1.5.0
94130
[1.4.2]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.4.1...1.4.2

‎README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/umotif-public/terraform-aws-bastion?style=social)
1+
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/umotif-public/terraform-aws-bastion)](https://github.com/umotif-public/terraform-aws-bastion/releases/latest)
22

33
# terraform-aws-bastion
44

@@ -50,14 +50,14 @@ Module managed by [Marcin Cuber](https://github.com/marcincuber) [LinkedIn](http
5050

5151
| Name | Version |
5252
|------|---------|
53-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.0 |
54-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.34 |
53+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13.7 |
54+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0.0 |
5555

5656
## Providers
5757

5858
| Name | Version |
5959
|------|---------|
60-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.34 |
60+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0.0 |
6161

6262
## Modules
6363

‎versions.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
terraform {
2-
required_version = ">= 0.13.0"
2+
required_version = ">= 0.13.7"
33

44
required_providers {
5-
aws = ">= 3.34"
5+
aws = ">= 4.0.0"
66
}
77
}
8-

0 commit comments

Comments
 (0)