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"alicloud_privatelink_vpc_endpoint_service" {
source="./modules/alicloud/r/alicloud_privatelink_vpc_endpoint_service"# auto_accept_connection - (optional) is a type of boolauto_accept_connection=null# connect_bandwidth - (optional) is a type of numberconnect_bandwidth=null# dry_run - (optional) is a type of booldry_run=null# payer - (optional) is a type of stringpayer=null# service_description - (optional) is a type of stringservice_description=nulltimeouts=[{
create =null
delete =null
update =null
}]
}
resource"alicloud_privatelink_vpc_endpoint_service""this" {
# auto_accept_connection - (optional) is a type of boolauto_accept_connection=var.auto_accept_connection# connect_bandwidth - (optional) is a type of numberconnect_bandwidth=var.connect_bandwidth# dry_run - (optional) is a type of booldry_run=var.dry_run# payer - (optional) is a type of stringpayer=var.payer# service_description - (optional) is a type of stringservice_description=var.service_descriptiondynamic"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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}