Skip to content

Commit 406585e

Browse files
authored
Added exmaples read me and updated provider versions (#5)
* Added exmaples read me and updated provider versions * Updated terraform requirements doc
1 parent e15bba1 commit 406585e

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

TERRAFORM.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
| Name | Version |
44
|------|---------|
55
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.1 |
6-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
7-
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | ~> 4.0 |
6+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4 |
7+
| <a name="requirement_tls"></a> [tls](#requirement\_tls) | ~> 4 |
88

99
## Providers
1010

1111
| Name | Version |
1212
|------|---------|
13-
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.38.0 |
13+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 4.40.0 |
1414
| <a name="provider_tls"></a> [tls](#provider\_tls) | 4.0.4 |
1515

1616
## Modules

exmaples/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Examples
2+
3+
The examples provided serve two primary purposes:
4+
5+
1. Show working examples of the module and how it can be configured
6+
1. A way to test and/or validating module changes
7+
8+
To deploy:
9+
10+
```hcl
11+
terraform init
12+
terraform plan
13+
terraform apply
14+
```
15+
16+
> Note: If you execute `terraform apply` this will create resources, to clean up execute `terraform destroy`

versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "~> 4.0"
5+
version = "~> 4"
66
}
77

88
tls = {
99
source = "hashicorp/tls"
10-
version = "~> 4.0"
10+
version = "~> 4"
1111
}
1212
}
1313

0 commit comments

Comments
 (0)