-
Notifications
You must be signed in to change notification settings - Fork 121
Issues: chef-boneyard/chef-provisioning-aws
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Milestones
Assignee
Sort
Issues list
-1 Chef server for AWS INFRASTRUCTURE provisioning I'm using aws cook book in chef and I'm adding vpc creation: my_vpc = aws_vpc 'my_vpc' do cidr_block '10.0.0.0/24' main_routes '0.0.0.0/0' => :internet_gateway internet_gateway true
enter code here
end my_sg = aws_security_group 'my_sg' do vpc lazy { my_vpc.aws_object.id } inbound_rules '0.0.0.0/0' => [ 22, 80 ] end my_subnet = aws_subnet 'my_subnet' do vpc lazy { my_vpc.aws_object.id } cidr_block '10.0.0.0/24' availability_zone 'eu-west-1a' map_public_ip_on_launch true end machine 'my_machine' do machine_options( lazy do { bootstrap_options: { subnet_id: my_subnet.aws_object.id, security_group_ids: [my_sg.aws_object.id] } } end ) end I'm experiencing "undefined method" error NoMethodError undefined method `aws_vpc' for cookbook: chef-aws, recipe: default :Chef::Recipe
#584
opened Nov 28, 2019 by
Tamilvananb
undefined method `aws_vpc' for cookbook: aws, recipe: default :Chef::Recipe
#583
opened Nov 27, 2019 by
Tamilvananb
Attaching a rule to a security-group involving an sg from a Peering VPC is failing
#582
opened Nov 21, 2019 by
sjhandique
call to aws_eip_address failing with NoMethodError: undefined method `[]' for nil:NilClass
#579
opened Mar 22, 2019 by
ff-agrawal
Not able to assign custom Service Linked Role for Auto Scaling Group
#567
opened Jun 22, 2018 by
m4ver1k
Need clarification on 'machine/machine_batch' option 'actions' to avoid WinRM connection
#514
opened Nov 23, 2016 by
r4hulgupta
AWS VPC Provisioning Fails. Chef returns error that it is not able to find resource with resource ID
#512
opened Nov 8, 2016 by
r4hulgupta
Previous Next
ProTip!
Type g p on any issue or pull request to go back to the pull request listing page.