-
Notifications
You must be signed in to change notification settings - Fork 1
/
ec2.tf
64 lines (50 loc) · 1.57 KB
/
ec2.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
// Copyright 2022 Isovalent, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
resource "tls_private_key" "ssh_key" {
algorithm = "RSA"
rsa_bits = "2048"
}
resource "aws_key_pair" "ssh_access" {
key_name = "Generated SSH key for ${var.name}"
public_key = tls_private_key.ssh_key.public_key_openssh
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"] # Canonical
}
resource "aws_instance" "echo-server" {
count = var.echo_server_instance_enabled ? 1 : 0
ami = data.aws_ami.ubuntu.id
instance_type = "t3.micro"
subnet_id = sort(data.aws_subnets.public.ids)[0]
vpc_security_group_ids = [
module.main.node_security_group_id,
]
key_name = aws_key_pair.ssh_access.key_name
user_data = var.echo_server_instance_user_data
lifecycle {
ignore_changes = [ami]
}
tags = merge(var.tags, {
Name = "${var.name}-egressgw-echo-server"
})
}