Skip to content

Commit

Permalink
fix: tflint
Browse files Browse the repository at this point in the history
  • Loading branch information
devlace committed Dec 24, 2024
1 parent 4b44c52 commit 7d72af5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ data "azuread_group" "fabric_workspace_admin" {

data "azuredevops_project" "git_project" {
name = var.git_project_name
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -221,4 +221,4 @@ module "azure_devops_variable_group" {
azure_devops_variable_group_variables = {
"key_vault_name" = module.keyvault.keyvault_name # Needs at least one variable
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ resource "azuredevops_variable_group" "vargroup" {
project_id = var.azure_devops_project_id
name = var.azure_devops_variable_group_name
allow_access = true
dynamic variable {

dynamic "variable" {
for_each = var.azure_devops_variable_group_variables
content {
name = variable.key
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
output "variable_group_id" {
description = "The ID of the created Azure DevOps variable group"
value = azuredevops_variable_group.vargroup.id
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ variable "azure_devops_variable_group_name" {
variable "azure_devops_variable_group_variables" {
description = "Azure DevOps project variables"
type = map(string)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ terraform {
version = "= 1.5.0"
}
}
}
}

0 comments on commit 7d72af5

Please sign in to comment.