Skip to content

Commit

Permalink
Merge pull request #6 from qbeyond/fix/implement-version-contraint
Browse files Browse the repository at this point in the history
add version contraint
  • Loading branch information
QBY-ChristianHartmann authored Feb 6, 2025
2 parents 0cc5fd0 + 663ad30 commit b1078c9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ Add tags to any azure subscription via terraform

| Name | Version |
|------|---------|
| <a name="requirement_azapi"></a> [azapi](#requirement\_azapi) | >= 0.5.0 |
| <a name="requirement_azapi"></a> [azapi](#requirement\_azapi) | ~>1.15 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_azapi"></a> [azapi](#provider\_azapi) | >= 0.5.0 |
| <a name="provider_azapi"></a> [azapi](#provider\_azapi) | ~>1.15 |

## Modules

Expand All @@ -28,7 +28,7 @@ No modules.

| Name | Type |
|------|------|
| [azapi_update_resource.subscription_tags](https://registry.terraform.io/providers/Azure/azapi/latest/docs/resources/update_resource) | resource |
| [azapi_update_resource.subscription_tags](https://registry.terraform.io/providers/azure/azapi/latest/docs/resources/update_resource) | resource |

## Inputs

Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
terraform {
required_providers {
azapi = {
source = "Azure/azapi"
version = ">= 0.5.0"
source = "azure/azapi"
version = "~>1.15"
}
}
}
Expand Down

0 comments on commit b1078c9

Please sign in to comment.