Skip to content

Commit

Permalink
fix: Restrict maximum AzureRM provider version for bootstrap module (#36
Browse files Browse the repository at this point in the history
)
  • Loading branch information
acelebanski authored Apr 3, 2024
1 parent 53b1082 commit 2619842
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/bootstrap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ resource "local_file" "this" {
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2, < 2.0 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.25 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 3.25, <= 3.95 |
| <a name="requirement_random"></a> [random](#requirement\_random) | ~> 3.1 |

### Providers

| Name | Version |
|------|---------|
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.25 |
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | ~> 3.25, <= 3.95 |

### Modules

Expand Down
2 changes: 1 addition & 1 deletion modules/bootstrap/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.25"
version = "~> 3.25, <= 3.95"
}
random = {
source = "hashicorp/random"
Expand Down

0 comments on commit 2619842

Please sign in to comment.