-
Notifications
You must be signed in to change notification settings - Fork 10
/
variables.tf
80 lines (68 loc) · 1.36 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
variable "region" {
description = "Your target AWS region"
default = "us-west-1"
type = string
}
variable "machine_type" {
description = "The machine type of the AWS instance"
default = "t2.medium"
type = string
}
variable "key_name" {
description = "The key name used to ssh into your AWS instance"
# default = "johndoe"
type = string
}
variable "owner" {
description = "Owner of resources"
default = "ansible-demo"
type = string
}
data "aws_ami" "debian" {
most_recent = true
filter {
name = "name"
values = ["debian-12-amd64-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
owners = ["136693071363"]
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
owners = ["099720109477"]
}
data "aws_ami" "rhel" {
most_recent = true
filter {
name = "name"
values = ["RHEL-9.4.0_HVM-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
filter {
name = "architecture"
values = ["x86_64"]
}
owners = ["309956199498"]
}