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_resource_authorization" {
source="./modules/azuredevops/r/azuredevops_resource_authorization"# authorized - (required) is a type of boolauthorized=null# definition_id - (optional) is a type of numberdefinition_id=null# project_id - (required) is a type of stringproject_id=null# resource_id - (required) is a type of stringresource_id=null# type - (optional) is a type of stringtype=null
}
variable"authorized" {
description="(required) - indicates whether the resource is authorized for use"type=bool
}
variable"definition_id" {
description="(optional) - id of the build definition"type=numberdefault=null
}
variable"project_id" {
description="(required)"type=string
}
variable"resource_id" {
description="(required) - id of the resource"type=string
}
variable"type" {
description="(optional) - type of the resource"type=stringdefault=null
}
resource"azuredevops_resource_authorization""this" {
# authorized - (required) is a type of boolauthorized=var.authorized# definition_id - (optional) is a type of numberdefinition_id=var.definition_id# project_id - (required) is a type of stringproject_id=var.project_id# resource_id - (required) is a type of stringresource_id=var.resource_id# type - (optional) is a type of stringtype=var.type
}