oscar-stack / vagrant-config_builder

Configure Vagrant with structured data
Other
23 stars 19 forks source link

support atlas boxes #41

Open logicminds opened 9 years ago

logicminds commented 9 years ago

Does this plugin support the use of atlas hosted boxes? Hoping I can just use puppetlabs/centos-6.6-64-nocm as the box source instead of the full url to whatever it resolves to.

adrienthebo commented 9 years ago

You can; just specify the full name as the box name. The box URL will only be used if it's been set and the box hasn't been downloaded.

adrienthebo commented 9 years ago

I can definitely confirm that this works as I've done it myself:

---
vms:
  - name: proxy-client
    box: 'puppetlabs/debian-7.8-64-puppet'
    roles: ['r10k', 'proxy_client', 'private_network']
  - name: proxy-server
    box: 'puppetlabs/centos-6.6-64-nocm'
    roles: ['proxy_server', 'puppet', 'private_network']
logicminds commented 9 years ago

Ok great, I'll send a PR with some updated docs to explain this.