SystemBoundary

c4model/Boundary/SystemBoundary
include('c4model/Boundary/SystemBoundary')
SystemBoundary
illustration for SystemBoundary

SystemBoundary

Load remotely

@startuml
' configures the library
!global $LIB_BASE_LOCATION="https://raw.githubusercontent.com/tmorin/plantuml-libs/master/distribution"

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('c4model/bootstrap')

' loads the Item which embeds the element SystemBoundary
include('c4model/Boundary/SystemBoundary')

SystemBoundary('SystemBoundary', 'System Boundary', 'an optional tech label') {
  note as note
  the content of the boundary
  end note
}
@enduml

Load locally

@startuml
' configures the library
!global $INCLUSION_MODE="local"
!global $LIB_BASE_LOCATION="../.."

' loads the library's bootstrap
!include $LIB_BASE_LOCATION/bootstrap.puml

' loads the package bootstrap
include('c4model/bootstrap')

' loads the Item which embeds the element SystemBoundary
include('c4model/Boundary/SystemBoundary')

SystemBoundary('SystemBoundary', 'System Boundary', 'an optional tech label') {
  note as note
  the content of the boundary
  end note
}
@enduml