File tree Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Expand file tree Collapse file tree 3 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 3
3
| Name | Version |
4
4
| ------| ---------|
5
5
| <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 |
8
8
9
9
## Providers
10
10
11
11
| Name | Version |
12
12
| ------| ---------|
13
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.38 .0 |
13
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.40 .0 |
14
14
| <a name =" provider_tls " ></a > [ tls] ( #provider\_ tls ) | 4.0.4 |
15
15
16
16
## Modules
Original file line number Diff line number Diff line change
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 `
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ terraform {
2
2
required_providers {
3
3
aws = {
4
4
source = " hashicorp/aws"
5
- version = " ~> 4.0 "
5
+ version = " ~> 4"
6
6
}
7
7
8
8
tls = {
9
9
source = " hashicorp/tls"
10
- version = " ~> 4.0 "
10
+ version = " ~> 4"
11
11
}
12
12
}
13
13
You can’t perform that action at this time.
0 commit comments