Skip to content

Is it possible to access nested identifier in deploymentNode with hierarchical identifiers? #313

Closed Answered by simonbrowndotje
b0g3r asked this question in Q&A
Discussion options

You must be logged in to vote

It isn't, but this works:

workspace {
   !identifiers hierarchical

    model {
        user = person "User"
        softwareSystem = softwareSystem "Software System" {
            webapp = container "Web Application" {
                user -> this "Uses"
            }
            db = container "Database" {
                webapp -> this "Reads from and writes to"
            }
        }
        
        live = deploymentEnvironment "Live" {
            cloud = deploymentNode "Cloud" {
                balancer = infrastructureNode "Load Balancer"
                deploymentNode "node 1" {
                    instances 5
                    webapp = containerInstance softwareSystem.webapp …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by b0g3r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants