import

Description

Imports are objects that exist in the venue and are referenced within the blueprint. When importing an object, any dependencies the object has will also be imported. Imported objects are not modifiable.

Features

Automatically Imported as Needed

Feature

AWS

Azure

compute.image

compute.nic

location.folder

✔️

✔️

location.region

✔️

✔️

networking.dns

networking.firewall

✔️

✔️

networking.network

✔️

networking.protocol

✔️

✔️

networking.service

networking.subnet

storage.disk

Directly Importable

Feature

AWS

Azure

compute.vm

location.folder

✔️

✔️

networking.balancer

networking.dns

✔️

networking.network

✔️

✔️

networking.subnet

✔️

✔️

storage.disk

Required Properties

This object has no required properties, but it likely requires a combination of optional properties to be useful.

Optional Properties

import (dict)

Resources to be imported. Resources should be placed in a path identical to how they would appear in a blueprint. See the example for details on how to specify imported resources.

Common Properties

Examples

A network to be imported from AWS:

import:
  networking:
    network:
      my-network:
        id: vpc-1234567890
        region: us-west-1

A network to be imported from Azure:

import:
  networking:
    network:
      my-network:
        id: /subscriptions/eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee/resourceGroups/my-folder/providers/Microsoft.Network/virtualNetworks/my-network

Last updated

Was this helpful?