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_serviceendpoint_sonarqube" {
source="./modules/azuredevops/r/azuredevops_serviceendpoint_sonarqube"# authorization - (optional) is a type of map of stringauthorization={}
# description - (optional) is a type of stringdescription=null# project_id - (required) is a type of stringproject_id=null# service_endpoint_name - (required) is a type of stringservice_endpoint_name=null# token - (required) is a type of stringtoken=null# url - (required) is a type of stringurl=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azuredevops_serviceendpoint_sonarqube""this" {
# authorization - (optional) is a type of map of stringauthorization=var.authorization# description - (optional) is a type of stringdescription=var.description# project_id - (required) is a type of stringproject_id=var.project_id# service_endpoint_name - (required) is a type of stringservice_endpoint_name=var.service_endpoint_name# token - (required) is a type of stringtoken=var.token# url - (required) is a type of stringurl=var.urldynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}