-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add terraform config for the ansible_controller (#68)
This sets up an ec2 node with all the needed dependencies to work as an ansible control node. I am a bit uncertain if we should also add the git clone of the devops repo with ansible inside of it, or just leave that to being a manual task we do every time we need to do a deploy. For the moment I have kept it to being as simple as possible. This implements: #67
- Loading branch information
Showing
4 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
data "aws_ssm_parameter" "ubuntu_22_ami" { | ||
name = "/aws/service/canonical/ubuntu/server/22.04/stable/current/amd64/hvm/ebs-gp2/ami-id" | ||
} | ||
|
||
resource "aws_security_group" "ansible_ctrl_sg" { | ||
description = "security group for ansible controller" | ||
name_prefix = "ooni-ansible-ctrl" | ||
|
||
vpc_id = var.vpc_id | ||
|
||
ingress { | ||
protocol = "tcp" | ||
from_port = 22 | ||
to_port = 22 | ||
cidr_blocks = ["0.0.0.0/0"] | ||
} | ||
|
||
egress { | ||
from_port = 0 | ||
to_port = 0 | ||
protocol = "-1" | ||
|
||
cidr_blocks = [ | ||
"0.0.0.0/0", | ||
] | ||
} | ||
|
||
egress { | ||
from_port = 0 | ||
to_port = 0 | ||
protocol = "-1" | ||
ipv6_cidr_blocks = ["::/0"] | ||
} | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
|
||
tags = var.tags | ||
} | ||
|
||
resource "aws_instance" "ansible_controller" { | ||
ami = data.aws_ssm_parameter.ubuntu_22_ami.value | ||
instance_type = var.instance_type | ||
key_name = var.key_name | ||
|
||
user_data = <<-EOF | ||
#!/bin/bash | ||
apt-get update | ||
apt-get install -y software-properties-common | ||
add-apt-repository --yes --update ppa:ansible/ansible | ||
apt-get install -y ansible | ||
EOF | ||
|
||
lifecycle { | ||
create_before_destroy = true | ||
} | ||
|
||
security_groups = [aws_security_group.ansible_ctrl_sg.id] | ||
|
||
tags = var.tags | ||
} | ||
|
||
resource "aws_route53_record" "oonith_service_alias" { | ||
zone_id = var.dns_zone_ooni_io | ||
name = "ansible-controller" | ||
type = "A" | ||
|
||
alias { | ||
name = aws_instance.ansible_controller.public_dns | ||
zone_id = var.dns_zone_ooni_io | ||
evaluate_target_health = true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
variable "vpc_id" { | ||
description = "the id of the VPC to deploy the instance into" | ||
} | ||
|
||
variable "tags" { | ||
description = "tags to apply to the resources" | ||
default = {} | ||
type = map(string) | ||
} | ||
|
||
variable "key_name" { | ||
description = "Name of AWS key pair" | ||
} | ||
|
||
variable "instance_type" { | ||
default = "t2.micro" | ||
} | ||
|
||
variable "dns_zone_ooni_io" { | ||
description = "id of the DNS zone for ooni_io" | ||
} | ||
|