Skip to content

Commit

Permalink
Stabilised version constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
DrizzlyOwl committed Dec 10, 2024
1 parent f6a8201 commit 6cf9b4f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ module "azure_key_vault_tfvars" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.9.5 |
| <a name="requirement_azuread"></a> [azuread](#requirement\_azuread) | >= 2.37.1 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 4.0.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.2.1 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.9 |
| <a name="requirement_azuread"></a> [azuread](#requirement\_azuread) | ~> 2.37 |
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | ~> 4.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3.2 |

## Providers

Expand Down
8 changes: 4 additions & 4 deletions versions.tf
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
terraform {
required_version = ">= 1.9.5"
required_version = "~> 1.9"

required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 4.0.0"
version = "~> 4.0"
}

azuread = {
source = "hashicorp/azuread"
version = ">= 2.37.1"
version = "~> 2.37"
}

null = {
source = "hashicorp/null"
version = ">= 3.2.1"
version = "~> 3.2"
}
}
}

0 comments on commit 6cf9b4f

Please sign in to comment.