No commit activity in last 3 years
No release in over 3 years
Setup AWS ALB Target Group
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0

Runtime

~> 2.6.44
 Project Readme

vagrant-aws-alb-target-group

A Vagrant plugin setup the ALB Target Group.

Add instance

  • initial vagrant up
  • vagrant up the halted instance

Remove instance

  • vagrant halt
  • vagrant destroy

Prerequisite

  • vagrant-aws

Install

$ vagrant install vagrant-aws-alb-target-group

Config

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box       = 'dummy'
  config.ssh.username = 'henteko'

  config.vm.provider :aws do |aws, override|
    aws.ami                       = 'ami'
    aws.access_key_id             = 'key_id'
    aws.secret_access_key         = 'secret_key'
    aws.region                    = 'ap-northeast-1'
    aws.instance_type             = 't2.medium'

    override.aws_alb.target_group_name = 'your-target-group-name'
  end

end