Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

tosca_definitions_version: tosca_simple_yaml_1_2

 

description: Template for deploying SD-WAN with a variable number of sites.

 

topology_template:

  inputs:    numberOfSites

    numberOfSites:

      type: integer

    locations:(VNF)

      type      type: list

      entry_schema: Location

  

  node_templates:

    sdwan:

      type: VPN

    site:

      type: VPNSite

      occurrences      occurrences: [1, UNBOUNDED]

      instance_count: { get_input: numberOfSites }

      properties:

        location: { get_input: [ locations, INDEX ] }

      requirements:

-   vpn: sdwan

...