Skip to content

Commit

Permalink
Use min version 3.1.0 on "random" provider (#26)
Browse files Browse the repository at this point in the history
* Run remote test with fixed minimum provider version

Signed-off-by: Roman Schwarz <[email protected]>

* Use random provider version `3.1.0`

Signed-off-by: Roman Schwarz <[email protected]>

* WIP: test workflow from feature ref

Signed-off-by: Roman Schwarz <[email protected]>

* Switch to `main` ref on workflow

Signed-off-by: Roman Schwarz <[email protected]>

---------

Signed-off-by: Roman Schwarz <[email protected]>
  • Loading branch information
rswrz authored Sep 30, 2024
1 parent 0310def commit 369ea94
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The following providers are used by this module:

- <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) (>= 4.1)

- <a name="provider_random"></a> [random](#provider\_random) (>= 3.0)
- <a name="provider_random"></a> [random](#provider\_random) (>= 3.1)

- <a name="provider_tls"></a> [tls](#provider\_tls) (>= 4.0)

Expand Down
10 changes: 5 additions & 5 deletions tests/remote/terraform.tf
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
terraform {
required_version = "~> 1.9"
required_version = "1.9.0"

required_providers {
azapi = {
source = "azure/azapi"
version = "~> 1.14"
version = "1.14.0"
}

azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.1"
version = "4.1.0"
}

random = {
source = "hashicorp/random"
version = "~> 3.0"
version = "3.1.0"
}

tls = {
source = "hashicorp/tls"
version = "~> 4.0"
version = "4.0.0"
}
}
}
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ terraform {

random = {
source = "hashicorp/random"
version = ">= 3.0"
version = ">= 3.1"
}

tls = {
Expand Down

0 comments on commit 369ea94

Please sign in to comment.