You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azuredevops_variable_group" {
source="./modules/azuredevops/r/azuredevops_variable_group"# allow_access - (optional) is a type of boolallow_access=null# description - (optional) is a type of stringdescription=null# name - (required) is a type of stringname=null# project_id - (required) is a type of stringproject_id=nullkey_vault=[{
name =null
service_endpoint_id =null
}]
variable=[{
content_type =null
enabled =null
expires =null
is_secret =null
name =null
secret_value =null
value =null
}]
}
resource"azuredevops_variable_group""this" {
# allow_access - (optional) is a type of boolallow_access=var.allow_access# description - (optional) is a type of stringdescription=var.description# name - (required) is a type of stringname=var.name# project_id - (required) is a type of stringproject_id=var.project_iddynamic"key_vault" {
for_each=var.key_vaultcontent {
# name - (required) is a type of stringname=key_vault.value["name"]
# service_endpoint_id - (required) is a type of stringservice_endpoint_id=key_vault.value["service_endpoint_id"]
}
}
dynamic"variable" {
for_each=var.variablecontent {
# is_secret - (optional) is a type of boolis_secret=variable.value["is_secret"]
# name - (required) is a type of stringname=variable.value["name"]
# secret_value - (optional) is a type of stringsecret_value=variable.value["secret_value"]
# value - (optional) is a type of stringvalue=variable.value["value"]
}
}
}