-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcicd.tf
40 lines (33 loc) · 910 Bytes
/
cicd.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
provider "aws" {
region = "us-east-1"
}
data "template_file" "bootstrap" {
template = file("bootstrap.tpl")
vars = {
buildbot_port = var.buildbot_port
}
}
resource "aws_instance" "hex7" {
ami = data.aws_ami.latest_amazon.id
instance_type = var.instance_type
key_name = aws_key_pair.hex7.id
vpc_security_group_ids = [aws_security_group.hex7.id]
subnet_id = aws_subnet.hex7.id
associate_public_ip_address = true
source_dest_check = false
iam_instance_profile = aws_iam_instance_profile.hex7.name
user_data = data.template_file.bootstrap.rendered
lifecycle {
create_before_destroy = true
}
tags = {
Name = var.tag_name
}
root_block_device {
volume_size = 100
volume_type = "standard"
tags = {
Name = var.tag_name
}
}
}