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_aws" {
source="./modules/azuredevops/r/azuredevops_serviceendpoint_aws"# access_key_id - (required) is a type of stringaccess_key_id=null# authorization - (optional) is a type of map of stringauthorization={}
# description - (optional) is a type of stringdescription=null# external_id - (optional) is a type of stringexternal_id=null# project_id - (required) is a type of stringproject_id=null# role_session_name - (optional) is a type of stringrole_session_name=null# role_to_assume - (optional) is a type of stringrole_to_assume=null# secret_access_key - (required) is a type of stringsecret_access_key=null# service_endpoint_name - (required) is a type of stringservice_endpoint_name=null# session_token - (optional) is a type of stringsession_token=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
variable"access_key_id" {
description="(required) - The AWS access key ID for signing programmatic requests."type=string
}
variable"authorization" {
description="(optional)"type=map(string)
default=null
}
variable"description" {
description="(optional)"type=stringdefault=null
}
variable"external_id" {
description="(optional) - A unique identifier that is used by third parties when assuming roles in their customers' accounts, aka cross-account role access."type=stringdefault=null
}
variable"project_id" {
description="(required)"type=string
}
variable"role_session_name" {
description="(optional) - Optional identifier for the assumed role session."type=stringdefault=null
}
variable"role_to_assume" {
description="(optional) - The Amazon Resource Name (ARN) of the role to assume."type=stringdefault=null
}
variable"secret_access_key" {
description="(required) - The AWS secret access key for signing programmatic requests."type=string
}
variable"service_endpoint_name" {
description="(required)"type=string
}
variable"session_token" {
description="(optional) - The AWS session token for signing programmatic requests."type=stringdefault=null
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
delete =string
read =string
update =string
}
))
default=[]
}
resource"azuredevops_serviceendpoint_aws""this" {
# access_key_id - (required) is a type of stringaccess_key_id=var.access_key_id# authorization - (optional) is a type of map of stringauthorization=var.authorization# description - (optional) is a type of stringdescription=var.description# external_id - (optional) is a type of stringexternal_id=var.external_id# project_id - (required) is a type of stringproject_id=var.project_id# role_session_name - (optional) is a type of stringrole_session_name=var.role_session_name# role_to_assume - (optional) is a type of stringrole_to_assume=var.role_to_assume# secret_access_key - (required) is a type of stringsecret_access_key=var.secret_access_key# service_endpoint_name - (required) is a type of stringservice_endpoint_name=var.service_endpoint_name# session_token - (optional) is a type of stringsession_token=var.session_tokendynamic"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"]
}
}
}