floating.pp 292 B

123456789101112131415161718
  1. # Creates floating networks
  2. #
  3. # === Parameters:
  4. #
  5. # [*network*]
  6. # (mandatory) The network name to work on
  7. #
  8. define nova::manage::floating ( $network ) {
  9. include ::nova::deps
  10. nova_floating { $name:
  11. ensure => present,
  12. network => $network,
  13. provider => 'nova_manage',
  14. }
  15. }