puppetlabs-aws
puppetlabs-aws copied to clipboard
Puppet module for managing AWS resources to build out infrastructure
Hi Team, Could you please provide the iam_instance_profile parameter for ec2_launchconfiguration? ` ec2_launchconfiguration {"${env_value}-lc-${init_project_name}-${role_lc}": name => "${env_value}-lc-${init_project_name}-${role_lc}", security_groups => "sg_${env_value}_${init_project_name}_allow_all", user_data => template('tepco/tepco-node-user-data-init-script.erb'), key_name => "${env_value}-${init_project_name}_id_rsa-pub", region => "$init_region", instance_type...
EC2 Security Groups have a dedicated 'group name' attribute which is used for identifying a group and is unique (at least within a given VPC). They also allow tags, including...
Hi, It it possible to get ll the AWS EC2 inventory without writing custom Facts ? Like with native AWS Cli "aws ec2 describe-instances" Thank you.
It's an incorrect assumption that there's only one network behind a gateway. It must for example be possible to route several networks through VPN gateway.
This adds an additional option for assigning an IAM instance profile to Auto Scaling EC2 instances.
Query instances across regions concurrently to reduce the execution time of "puppet resource ec2_instance".
I am trying to pass a user_data script with my puppet launch code to deploy an EC2 instance and send a powershell script to load the puppet agent at the...
Hi all, Trying unsuccessfully to generate a security group using inline_template: ``` $my_sg={ protocol => 'tcp', port => 22, cidr => '1.1.1.1/32',} ``` ``` ec2_securitygroup { 'my-security-group': ensure => present,...
In the AWS console (and via the API), it is possible to provide individual descriptions of each line of an ingress rule. This can be invaluable for keeping track of...