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_azurerm" {
source="./modules/azuredevops/r/azuredevops_serviceendpoint_azurerm"# authorization - (optional) is a type of map of stringauthorization={}
# azurerm_spn_tenantid - (required) is a type of stringazurerm_spn_tenantid=null# azurerm_subscription_id - (required) is a type of stringazurerm_subscription_id=null# azurerm_subscription_name - (required) is a type of stringazurerm_subscription_name=null# description - (optional) is a type of stringdescription=null# project_id - (required) is a type of stringproject_id=null# resource_group - (optional) is a type of stringresource_group=null# service_endpoint_name - (required) is a type of stringservice_endpoint_name=nullcredentials=[{
serviceprincipalid =null
serviceprincipalkey =null
serviceprincipalkey_hash =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azuredevops_serviceendpoint_azurerm""this" {
# authorization - (optional) is a type of map of stringauthorization=var.authorization# azurerm_spn_tenantid - (required) is a type of stringazurerm_spn_tenantid=var.azurerm_spn_tenantid# azurerm_subscription_id - (required) is a type of stringazurerm_subscription_id=var.azurerm_subscription_id# azurerm_subscription_name - (required) is a type of stringazurerm_subscription_name=var.azurerm_subscription_name# description - (optional) is a type of stringdescription=var.description# project_id - (required) is a type of stringproject_id=var.project_id# resource_group - (optional) is a type of stringresource_group=var.resource_group# service_endpoint_name - (required) is a type of stringservice_endpoint_name=var.service_endpoint_namedynamic"credentials" {
for_each=var.credentialscontent {
# serviceprincipalid - (required) is a type of stringserviceprincipalid=credentials.value["serviceprincipalid"]
# serviceprincipalkey - (required) is a type of stringserviceprincipalkey=credentials.value["serviceprincipalkey"]
}
}
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"]
}
}
}