Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. ## Network intranodes
  2. dynamic!(:route_table, 'clustrix02_database')
  3.  
  4. dynamic!(:subnet, 'clustrix02_database',
  5. :type => :public,
  6. :az => ref!(:private02_subnet_az),
  7. :cidr_block => ref!(:private02_subnet_cidr_block),
  8. :route_tables => [:clustrix02_database_route_table],
  9. )
  10.  
  11. dynamic!(:route, 'clustrix02_database_subnet_default',
  12. :destination_cidr_block => '0.0.0.0/0',
  13. :eni_id => ref!(:eni_id_02),
  14. :route_table_id => ref!(:clustrix02_database_route_table),
  15. )
  16.  
  17. dynamic!(:premise_routes, 'clustrix02_database_subnet',
  18. :dests => PREMISE_ROUTES,
  19. :gateway_id => ref!(:vgw_id),
  20. :route_table_id => ref!(:clustrix02_database_route_table),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement