Max Inden 8e2c837599
fix(perf): increase maximum udp send buffer size (#254)
Previously only the maximum udp **receive** buffer size was increased to
`2500000` bytes. With this commit both the send and the receive buffer size is increase.
2023-08-14 16:08:41 +02:00

31 lines
478 B
HCL

terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "4.67.0"
}
}
}
resource "aws_key_pair" "perf" {
key_name_prefix = "perf-"
public_key = file("${path.module}/files/perf.pub")
}
resource "aws_instance" "perf" {
tags = {
Name = "perf-node"
}
launch_template {
name = "perf-node"
version = "4"
}
key_name = aws_key_pair.perf.key_name
}
output "public_ip" {
value = aws_instance.perf.public_ip
}