Skip to content

Commit c404840

Browse files
authored
Merge pull request #37 from lgallard/fix/update-provider-requirement
Fix/update provider requirement
2 parents db57ee6 + 9cf9be6 commit c404840

File tree

19 files changed

+141
-98
lines changed

19 files changed

+141
-98
lines changed

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Local .terraform directories
2+
**/.terraform/*
3+
4+
# .tfstate files
5+
*.tfstate
6+
*.tfstate.*
7+
8+
# Crash log files
9+
crash.log
10+
11+
# Ignore any .tfvars files that are generated automatically for each Terraform run. Most
12+
# .tfvars files are managed as part of configuration and so should be included in
13+
# version control.
14+
#
15+
# example.tfvars
16+
17+
# Ignore override files as they are usually used to override resources locally and so
18+
# are not checked in
19+
override.tf
20+
override.tf.json
21+
*_override.tf
22+
*_override.tf.json
23+
24+
# Include override files you do wish to add to version control using negated pattern
25+
#
26+
# !example_override.tf
27+
28+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
29+
# example: *tfplan*

.pre-commit-config.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
repos:
4+
- repo: https://github.com/pre-commit/pre-commit-hooks
5+
rev: v3.2.0
6+
hooks:
7+
- id: trailing-whitespace
8+
- id: end-of-file-fixer
9+
- id: check-added-large-files
10+
- id: detect-aws-credentials
11+
- repo: git://github.com/antonbabenko/pre-commit-terraform
12+
rev: v1.49.0 # Get the latest from: https://github.com/antonbabenko/pre-commit-terraform/releases
13+
hooks:
14+
- id: terraform_fmt
15+
- id: terraform_validate
16+
- id: terraform_docs

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
## 0.9.0 (April 12, 2021)
1+
## 0.9.1 (April 22, 2021)
2+
3+
ENHANCEMENTS:
4+
5+
* Add pre-commit config file
6+
* Add .gitignore file
7+
* Update README
28

9+
FIXES:
10+
11+
* Add AWS provider requirement (>= 3.35.0)
12+
13+
## 0.9.0 (April 12, 2021)
314

415
ENHANCEMENTS:
516

README.md

Lines changed: 78 additions & 76 deletions
Large diffs are not rendered by default.

examples/advanced_security_options_master_user_arn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS Elasticsearch domain with Advanced Security Options using master user ARN example
1+
# AWS Elasticsearch domain with Advanced Security Options using master user ARN example
22

33
```
44
module "aws_es" {

examples/advanced_security_options_master_user_arn/datasources.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ data "aws_caller_identity" "current" {}
44

55
# To obtain the name of the AWS region configured on the provider
66
data "aws_region" "current" {}
7-
8-

examples/advanced_security_options_master_user_arn/provider.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ provider "aws" {
22
region = var.region
33
profile = var.profile
44
}
5-

examples/advanced_security_options_master_user_arn/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,3 @@ variable "es_version" {}
1212
variable "whitelist" {
1313
default = []
1414
}
15-

examples/advanced_security_options_master_user_name_pasword/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AWS Elasticsearch domain with Advanced Security Options using name and password example
1+
# AWS Elasticsearch domain with Advanced Security Options using name and password example
22

33
```
44
module "aws_es" {

examples/advanced_security_options_master_user_name_pasword/datasources.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ data "aws_caller_identity" "current" {}
44

55
# To obtain the name of the AWS region configured on the provider
66
data "aws_region" "current" {}
7-
8-

0 commit comments

Comments
 (0)