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_runpipeline" {
source="./modules/azuredevops/r/azuredevops_serviceendpoint_runpipeline"# authorization - (optional) is a type of map of stringauthorization={}
# description - (optional) is a type of stringdescription=null# organization_name - (required) is a type of stringorganization_name=null# project_id - (required) is a type of stringproject_id=null# service_endpoint_name - (required) is a type of stringservice_endpoint_name=nullauth_personal=[{
personal_access_token =null
personal_access_token_hash =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azuredevops_serviceendpoint_runpipeline""this" {
# authorization - (optional) is a type of map of stringauthorization=var.authorization# description - (optional) is a type of stringdescription=var.description# organization_name - (required) is a type of stringorganization_name=var.organization_name# 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_namedynamic"auth_personal" {
for_each=var.auth_personalcontent {
# personal_access_token - (required) is a type of stringpersonal_access_token=auth_personal.value["personal_access_token"]
}
}
dynamic"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"]
}
}
}