Guest User

Untitled

a guest
Dec 22nd, 2017
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. ############################
  2. # Fortinet FortiGate NG-FW #
  3. ############################
  4. fortigate_vm:
  5. type: cloudify.azure.nodes.compute.VirtualMachine
  6. properties:
  7. name: {concat:[{get_input: resource_prefix},vm,{get_input: resource_suffix}]}
  8. location: { get_input: location }
  9. retry_after: { get_input: retry_after }
  10. os_family: { get_input: vm_os_family }
  11. azure_config: *azure_configuration
  12. plan:
  13. name: { get_input: vm_image_sku }
  14. publisher: { get_input: vm_image_publisher }
  15. product: { get_input: vm_image_offer }
  16. resource_config:
  17. hardwareProfile:
  18. vmSize: { get_input: vm_size }
  19. storageProfile:
  20. imageReference:
  21. publisher: { get_input: vm_image_publisher }
  22. offer: { get_input: vm_image_offer }
  23. sku: { get_input: vm_image_sku }
  24. version: { get_input: vm_image_version }
  25. osProfile:
  26. computerName: { get_property: [SELF, name] }
  27. adminUsername: { get_input: vm_os_username }
  28. adminPassword: { get_input: vm_os_password }
  29. agent_config:
  30. install_method: none
  31. relationships:
  32. - type: cloudify.azure.relationships.contained_in_resource_group
  33. target: resource_group
  34. - type: cloudify.azure.relationships.connected_to_storage_account
  35. target: storage_account
  36. - type: cloudify.azure.relationships.connected_to_availability_set
  37. target: availability_set
  38. - type: cloudify.azure.relationships.connected_to_nic
  39. target: nic_public
  40. - type: cloudify.azure.relationships.connected_to_nic
  41. target: nic_private
Add Comment
Please, Sign In to add comment