├── .expeditor ├── config.yml └── update_version.sh ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── lock.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── chef-provisioning-aws.gemspec ├── docs └── examples │ ├── auto_scaling.rb │ ├── auto_scaling_cleanup.rb │ ├── aws_cloudwatch_alarm.rb │ ├── aws_ebs_volume.rb │ ├── aws_nat_gateway.rb │ ├── aws_network_interface.rb │ ├── aws_rds_subnet_group.rb │ ├── aws_sg.rb │ ├── aws_tags.rb │ ├── aws_vpc.rb │ ├── eip.rb │ ├── iam_credentials.rb │ ├── load_balancer.rb │ ├── ref_destroy.rb │ ├── ref_elasticache.rb │ ├── ref_full.rb │ ├── route53.rb │ ├── route_table.rb │ └── s3.rb ├── lib └── chef │ ├── provider │ ├── aws_auto_scaling_group.rb │ ├── aws_cache_cluster.rb │ ├── aws_cache_replication_group.rb │ ├── aws_cache_subnet_group.rb │ ├── aws_cloudsearch_domain.rb │ ├── aws_cloudwatch_alarm.rb │ ├── aws_dhcp_options.rb │ ├── aws_ebs_volume.rb │ ├── aws_eip_address.rb │ ├── aws_elasticsearch_domain.rb │ ├── aws_iam_instance_profile.rb │ ├── aws_iam_role.rb │ ├── aws_image.rb │ ├── aws_instance.rb │ ├── aws_internet_gateway.rb │ ├── aws_key_pair.rb │ ├── aws_launch_configuration.rb │ ├── aws_load_balancer.rb │ ├── aws_nat_gateway.rb │ ├── aws_network_acl.rb │ ├── aws_network_interface.rb │ ├── aws_rds_instance.rb │ ├── aws_rds_parameter_group.rb │ ├── aws_rds_subnet_group.rb │ ├── aws_route_table.rb │ ├── aws_s3_bucket.rb │ ├── aws_security_group.rb │ ├── aws_server_certificate.rb │ ├── aws_sns_topic.rb │ ├── aws_sqs_queue.rb │ ├── aws_subnet.rb │ ├── aws_vpc.rb │ └── aws_vpc_peering_connection.rb │ ├── provisioning │ ├── aws_driver.rb │ ├── aws_driver │ │ ├── aws_provider.rb │ │ ├── aws_rds_resource.rb │ │ ├── aws_resource.rb │ │ ├── aws_resource_with_entry.rb │ │ ├── aws_taggable.rb │ │ ├── aws_tagger.rb │ │ ├── credentials.rb │ │ ├── credentials2.rb │ │ ├── driver.rb │ │ ├── exceptions.rb │ │ ├── resources.rb │ │ ├── super_lwrp.rb │ │ ├── tagging_strategy │ │ │ ├── auto_scaling.rb │ │ │ ├── ec2.rb │ │ │ ├── elasticsearch.rb │ │ │ ├── elb.rb │ │ │ ├── rds.rb │ │ │ └── s3.rb │ │ └── version.rb │ └── driver_init │ │ └── aws.rb │ └── resource │ ├── aws_auto_scaling_group.rb │ ├── aws_cache_cluster.rb │ ├── aws_cache_replication_group.rb │ ├── aws_cache_subnet_group.rb │ ├── aws_cloudsearch_domain.rb │ ├── aws_cloudwatch_alarm.rb │ ├── aws_dhcp_options.rb │ ├── aws_ebs_volume.rb │ ├── aws_eip_address.rb │ ├── aws_elasticsearch_domain.rb │ ├── aws_iam_instance_profile.rb │ ├── aws_iam_role.rb │ ├── aws_image.rb │ ├── aws_instance.rb │ ├── aws_internet_gateway.rb │ ├── aws_key_pair.rb │ ├── aws_launch_configuration.rb │ ├── aws_load_balancer.rb │ ├── aws_nat_gateway.rb │ ├── aws_network_acl.rb │ ├── aws_network_interface.rb │ ├── aws_rds_instance.rb │ ├── aws_rds_parameter_group.rb │ ├── aws_rds_subnet_group.rb │ ├── aws_route53_hosted_zone.rb │ ├── aws_route53_record_set.rb │ ├── aws_route_table.rb │ ├── aws_s3_bucket.rb │ ├── aws_security_group.rb │ ├── aws_server_certificate.rb │ ├── aws_sns_topic.rb │ ├── aws_sqs_queue.rb │ ├── aws_subnet.rb │ ├── aws_vpc.rb │ └── aws_vpc_peering_connection.rb ├── spec ├── aws_support.rb ├── aws_support │ ├── aws_resource_run_wrapper.rb │ ├── deep_matcher.rb │ ├── deep_matcher │ │ ├── fuzzy_match_objects.rb │ │ ├── match_values_failure_messages.rb │ │ ├── matchable_array.rb │ │ ├── matchable_object.rb │ │ └── rspec_monkeypatches.rb │ ├── delayed_stream.rb │ └── matchers │ │ ├── create_an_aws_object.rb │ │ ├── destroy_an_aws_object.rb │ │ ├── have_aws_object_tags.rb │ │ ├── match_an_aws_object.rb │ │ └── update_an_aws_object.rb ├── integration │ ├── aws_auto_scaling_group_spec.rb │ ├── aws_cache_cluster_spec.rb │ ├── aws_cache_subnet_group_spec.rb │ ├── aws_cloudsearch_domain_spec.rb │ ├── aws_cloudwatch_alarm_spec.rb │ ├── aws_dhcp_options_spec.rb │ ├── aws_ebs_volume_spec.rb │ ├── aws_eip_address_spec.rb │ ├── aws_elasticsearch_domain_spec.rb │ ├── aws_iam_instance_profile_spec.rb │ ├── aws_iam_role_spec.rb │ ├── aws_internet_gateway_spec.rb │ ├── aws_key_pair_spec.rb │ ├── aws_launch_configuration_spec.rb │ ├── aws_nat_gateway_spec.rb │ ├── aws_network_acl_spec.rb │ ├── aws_network_interface_spec.rb │ ├── aws_rds_instance_spec.rb │ ├── aws_rds_parameter_group_spec.rb │ ├── aws_rds_subnet_group_spec.rb │ ├── aws_route53_hosted_zone_spec.rb │ ├── aws_route_table_spec.rb │ ├── aws_s3_bucket_spec.rb │ ├── aws_security_group_spec.rb │ ├── aws_server_certificate_spec.rb │ ├── aws_subnet_spec.rb │ ├── aws_vpc_peering_connection_spec.rb │ ├── aws_vpc_spec.rb │ ├── load_balancer_spec.rb │ ├── machine_batch_spec.rb │ ├── machine_image_spec.rb │ └── machine_spec.rb ├── spec_helper.rb └── unit │ └── chef │ └── provisioning │ └── aws_driver │ ├── credentials_spec.rb │ ├── driver_spec.rb │ └── route53_spec.rb └── tools ├── purge_zone.rb └── travis_env.sh /.expeditor/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.expeditor/config.yml -------------------------------------------------------------------------------- /.expeditor/update_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.expeditor/update_version.sh -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- 1 | daysUntilLock: 60 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -fd 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.0.9 -------------------------------------------------------------------------------- /chef-provisioning-aws.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/chef-provisioning-aws.gemspec -------------------------------------------------------------------------------- /docs/examples/auto_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/auto_scaling.rb -------------------------------------------------------------------------------- /docs/examples/auto_scaling_cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/auto_scaling_cleanup.rb -------------------------------------------------------------------------------- /docs/examples/aws_cloudwatch_alarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_cloudwatch_alarm.rb -------------------------------------------------------------------------------- /docs/examples/aws_ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_ebs_volume.rb -------------------------------------------------------------------------------- /docs/examples/aws_nat_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_nat_gateway.rb -------------------------------------------------------------------------------- /docs/examples/aws_network_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_network_interface.rb -------------------------------------------------------------------------------- /docs/examples/aws_rds_subnet_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_rds_subnet_group.rb -------------------------------------------------------------------------------- /docs/examples/aws_sg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_sg.rb -------------------------------------------------------------------------------- /docs/examples/aws_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_tags.rb -------------------------------------------------------------------------------- /docs/examples/aws_vpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/aws_vpc.rb -------------------------------------------------------------------------------- /docs/examples/eip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/eip.rb -------------------------------------------------------------------------------- /docs/examples/iam_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/iam_credentials.rb -------------------------------------------------------------------------------- /docs/examples/load_balancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/load_balancer.rb -------------------------------------------------------------------------------- /docs/examples/ref_destroy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/ref_destroy.rb -------------------------------------------------------------------------------- /docs/examples/ref_elasticache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/ref_elasticache.rb -------------------------------------------------------------------------------- /docs/examples/ref_full.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/ref_full.rb -------------------------------------------------------------------------------- /docs/examples/route53.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/route53.rb -------------------------------------------------------------------------------- /docs/examples/route_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/route_table.rb -------------------------------------------------------------------------------- /docs/examples/s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/docs/examples/s3.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_auto_scaling_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_auto_scaling_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_cache_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_cache_cluster.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_cache_replication_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_cache_replication_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_cache_subnet_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_cache_subnet_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_cloudsearch_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_cloudsearch_domain.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_cloudwatch_alarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_cloudwatch_alarm.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_dhcp_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_dhcp_options.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_ebs_volume.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_eip_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_eip_address.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_elasticsearch_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_elasticsearch_domain.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_iam_instance_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_iam_instance_profile.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_iam_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_iam_role.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_image.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_instance.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_internet_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_internet_gateway.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_key_pair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_key_pair.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_launch_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_launch_configuration.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_load_balancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_load_balancer.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_nat_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_nat_gateway.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_network_acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_network_acl.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_network_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_network_interface.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_rds_instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_rds_instance.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_rds_parameter_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_rds_parameter_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_rds_subnet_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_rds_subnet_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_route_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_route_table.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_s3_bucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_s3_bucket.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_security_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_security_group.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_server_certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_server_certificate.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_sns_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_sns_topic.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_sqs_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_sqs_queue.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_subnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_subnet.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_vpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_vpc.rb -------------------------------------------------------------------------------- /lib/chef/provider/aws_vpc_peering_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provider/aws_vpc_peering_connection.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_provider.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_rds_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_rds_resource.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_resource.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_resource_with_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_resource_with_entry.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_taggable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_taggable.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/aws_tagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/aws_tagger.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/credentials.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/credentials2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/credentials2.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/driver.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/exceptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/exceptions.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/resources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/resources.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/super_lwrp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/super_lwrp.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/auto_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/auto_scaling.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/ec2.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/elasticsearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/elasticsearch.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/elb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/elb.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/rds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/rds.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/tagging_strategy/s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/tagging_strategy/s3.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/aws_driver/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/aws_driver/version.rb -------------------------------------------------------------------------------- /lib/chef/provisioning/driver_init/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/provisioning/driver_init/aws.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_auto_scaling_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_auto_scaling_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_cache_cluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_cache_cluster.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_cache_replication_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_cache_replication_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_cache_subnet_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_cache_subnet_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_cloudsearch_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_cloudsearch_domain.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_cloudwatch_alarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_cloudwatch_alarm.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_dhcp_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_dhcp_options.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_ebs_volume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_ebs_volume.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_eip_address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_eip_address.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_elasticsearch_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_elasticsearch_domain.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_iam_instance_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_iam_instance_profile.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_iam_role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_iam_role.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_image.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_instance.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_internet_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_internet_gateway.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_key_pair.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_key_pair.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_launch_configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_launch_configuration.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_load_balancer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_load_balancer.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_nat_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_nat_gateway.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_network_acl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_network_acl.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_network_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_network_interface.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_rds_instance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_rds_instance.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_rds_parameter_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_rds_parameter_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_rds_subnet_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_rds_subnet_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_route53_hosted_zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_route53_hosted_zone.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_route53_record_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_route53_record_set.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_route_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_route_table.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_s3_bucket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_s3_bucket.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_security_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_security_group.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_server_certificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_server_certificate.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_sns_topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_sns_topic.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_sqs_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_sqs_queue.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_subnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_subnet.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_vpc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_vpc.rb -------------------------------------------------------------------------------- /lib/chef/resource/aws_vpc_peering_connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/lib/chef/resource/aws_vpc_peering_connection.rb -------------------------------------------------------------------------------- /spec/aws_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support.rb -------------------------------------------------------------------------------- /spec/aws_support/aws_resource_run_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/aws_resource_run_wrapper.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher/fuzzy_match_objects.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher/fuzzy_match_objects.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher/match_values_failure_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher/match_values_failure_messages.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher/matchable_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher/matchable_array.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher/matchable_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher/matchable_object.rb -------------------------------------------------------------------------------- /spec/aws_support/deep_matcher/rspec_monkeypatches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/deep_matcher/rspec_monkeypatches.rb -------------------------------------------------------------------------------- /spec/aws_support/delayed_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/delayed_stream.rb -------------------------------------------------------------------------------- /spec/aws_support/matchers/create_an_aws_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/matchers/create_an_aws_object.rb -------------------------------------------------------------------------------- /spec/aws_support/matchers/destroy_an_aws_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/matchers/destroy_an_aws_object.rb -------------------------------------------------------------------------------- /spec/aws_support/matchers/have_aws_object_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/matchers/have_aws_object_tags.rb -------------------------------------------------------------------------------- /spec/aws_support/matchers/match_an_aws_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/matchers/match_an_aws_object.rb -------------------------------------------------------------------------------- /spec/aws_support/matchers/update_an_aws_object.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/aws_support/matchers/update_an_aws_object.rb -------------------------------------------------------------------------------- /spec/integration/aws_auto_scaling_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_auto_scaling_group_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_cache_cluster_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_cache_cluster_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_cache_subnet_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_cache_subnet_group_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_cloudsearch_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_cloudsearch_domain_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_cloudwatch_alarm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_cloudwatch_alarm_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_dhcp_options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_dhcp_options_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_ebs_volume_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_ebs_volume_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_eip_address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_eip_address_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_elasticsearch_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_elasticsearch_domain_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_iam_instance_profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_iam_instance_profile_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_iam_role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_iam_role_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_internet_gateway_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_internet_gateway_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_key_pair_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_key_pair_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_launch_configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_launch_configuration_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_nat_gateway_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_nat_gateway_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_network_acl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_network_acl_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_network_interface_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_network_interface_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_rds_instance_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_rds_instance_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_rds_parameter_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_rds_parameter_group_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_rds_subnet_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_rds_subnet_group_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_route53_hosted_zone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_route53_hosted_zone_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_route_table_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_route_table_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_s3_bucket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_s3_bucket_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_security_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_security_group_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_server_certificate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_server_certificate_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_subnet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_subnet_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_vpc_peering_connection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_vpc_peering_connection_spec.rb -------------------------------------------------------------------------------- /spec/integration/aws_vpc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/aws_vpc_spec.rb -------------------------------------------------------------------------------- /spec/integration/load_balancer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/load_balancer_spec.rb -------------------------------------------------------------------------------- /spec/integration/machine_batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/machine_batch_spec.rb -------------------------------------------------------------------------------- /spec/integration/machine_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/machine_image_spec.rb -------------------------------------------------------------------------------- /spec/integration/machine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/integration/machine_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/unit/chef/provisioning/aws_driver/credentials_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/unit/chef/provisioning/aws_driver/credentials_spec.rb -------------------------------------------------------------------------------- /spec/unit/chef/provisioning/aws_driver/driver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/unit/chef/provisioning/aws_driver/driver_spec.rb -------------------------------------------------------------------------------- /spec/unit/chef/provisioning/aws_driver/route53_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/spec/unit/chef/provisioning/aws_driver/route53_spec.rb -------------------------------------------------------------------------------- /tools/purge_zone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/tools/purge_zone.rb -------------------------------------------------------------------------------- /tools/travis_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chef-boneyard/chef-provisioning-aws/HEAD/tools/travis_env.sh --------------------------------------------------------------------------------