Skip to content

Commit

Permalink
fix: specify correct version constraints
Browse files Browse the repository at this point in the history
Signed-off-by: Salim Afiune Maya <afiune@lacework.net>
  • Loading branch information
afiune committed Dec 15, 2020
1 parent 94c7e5f commit 1b1fbba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ locals {

module "az_cfg_ad_application" {
source = "lacework/ad-application/azure"
version = "~> 0.1"
version = "~> 0.1.0"
create = var.use_existing_ad_application ? false : true
application_name = var.application_name
application_identifier_uris = var.application_identifier_uris
Expand Down
4 changes: 2 additions & 2 deletions versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ terraform {

required_providers {
azuread = ">= 0.11"
azurerm = "~> 2.25"
azurerm = "~> 2.26.0"
random = ">= 2.1"
lacework = {
source = "lacework/lacework"
version = "~> 0.2"
version = "~> 0.2.0"
}
}
}

0 comments on commit 1b1fbba

Please sign in to comment.