inspec-iggy 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,35 +0,0 @@
1
- # Two-Tier example from https://github.com/terraform-providers/terraform-provider-aws
2
-
3
- variable "public_key_path" {
4
- description = <<DESCRIPTION
5
- Path to the SSH public key to be used for authentication.
6
- Ensure this keypair is added to your local SSH agent so provisioners can
7
- connect.
8
-
9
- Example: ~/.ssh/terraform.pub
10
- DESCRIPTION
11
- }
12
-
13
- variable "private_key_path" {
14
- description = "Path to the private key - for ssh login. Example: ~/.ssh/terraform.pem"
15
- }
16
-
17
- variable "key_name" {
18
- description = "Desired name of AWS key pair"
19
- }
20
-
21
- variable "aws_region" {
22
- description = "AWS region to launch servers."
23
- default = "us-west-1"
24
- }
25
-
26
- # Ubuntu Precise 12.04 LTS (x64)
27
- variable "aws_amis" {
28
- default = {
29
- eu-central-1 = "ami-fa2fb595"
30
- eu-west-1 = "ami-674cbc1e"
31
- us-east-1 = "ami-1d4e7a66"
32
- us-west-1 = "ami-969ab1f6"
33
- us-west-2 = "ami-8803e0f0"
34
- }
35
- }