Skip to content

Commit

Permalink
Add documentation (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdul Wahid authored May 12, 2022
1 parent 4a8ab70 commit 78264e2
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 13 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
*.DS_Store
errored.tfstate
.terraform
*.terraform
crash.log
terraform.tfstate
*.tfstate*
terraform.tfvars
terraform.tfvars
*.terraform.lock.hcl
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v4.2.0
hooks:
- id: check-added-large-files
args: ['--maxkb=500']
Expand All @@ -17,8 +17,8 @@ repos:
- id: detect-aws-credentials
args: ['--allow-missing-credentials']
- id: trailing-whitespace
- repo: git://github.com/antonbabenko/pre-commit-terraform
rev: v1.50.0
- repo: https://github.com/antonbabenko/pre-commit-terraform
rev: v1.71.0
hooks:
- id: terraform_fmt
- id: terraform_docs
Expand Down
38 changes: 37 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
<a name="unreleased"></a>
## [Unreleased]

- Allow setting time_zone for ASG schedules ([#17](https://github.com/umotif-public/terraform-aws-bastion/issues/17))


<a name="2.2.0"></a>
## [2.2.0] - 2021-06-04

- Add tags to IAM profile ([#14](https://github.com/umotif-public/terraform-aws-bastion/issues/14))


<a name="2.1.0"></a>
## [2.1.0] - 2021-04-23

- Update AWS partition sourcing ([#13](https://github.com/umotif-public/terraform-aws-bastion/issues/13))


<a name="2.0.3"></a>
## [2.0.3] - 2021-02-19

- Update bastion-userdata.sh ([#12](https://github.com/umotif-public/terraform-aws-bastion/issues/12))


<a name="2.0.2"></a>
## [2.0.2] - 2021-02-19

- Update bastion-userdata.sh ([#11](https://github.com/umotif-public/terraform-aws-bastion/issues/11))


<a name="2.0.1"></a>
## [2.0.1] - 2021-02-19

- Fix bastion policy to handle china partition ([#10](https://github.com/umotif-public/terraform-aws-bastion/issues/10))


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


[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.0...HEAD
[Unreleased]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.2.0...HEAD
[2.2.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.1.0...2.2.0
[2.1.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.3...2.1.0
[2.0.3]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.2...2.0.3
[2.0.2]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/umotif-public/terraform-aws-bastion/compare/2.0.0...2.0.1
[2.0.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.5.0...2.0.0
[1.5.0]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.4.2...1.5.0
[1.4.2]: https://github.com/umotif-public/terraform-aws-bastion/compare/1.4.1...1.4.2
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/umotif-public/terraform-aws-bastion?style=social)
[![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)

# terraform-aws-bastion

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

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

## Providers

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

## Modules

Expand Down
5 changes: 2 additions & 3 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
terraform {
required_version = ">= 0.13.0"
required_version = ">= 0.13.7"

required_providers {
aws = ">= 3.34"
aws = ">= 4.0.0"
}
}

0 comments on commit 78264e2

Please sign in to comment.