Skip to content

Commit

Permalink
Add provider versions (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Oct 17, 2022
1 parent 05e83dc commit 2a5e1ed
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 6 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,9 @@ The following resources _CAN_ be created:

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_null"></a> [null](#provider\_null) | n/a |
| <a name="provider_random"></a> [random](#provider\_random) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | ~> 4.0 |
| <a name="provider_null"></a> [null](#provider\_null) | ~> 3.0 |
| <a name="provider_random"></a> [random](#provider\_random) | ~> 3.0 |

<!-- TFDOCS_PROVIDER_END -->

Expand All @@ -260,7 +260,10 @@ The following resources _CAN_ be created:

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.0 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.0 |

<!-- TFDOCS_REQUIREMENTS_END -->

Expand Down
17 changes: 15 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

terraform {
required_version = ">= 1.0.0"
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
null = {
source = "hashicorp/null"
version = "~> 3.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
}
}
required_version = ">= 1.0"
}

0 comments on commit 2a5e1ed

Please sign in to comment.