mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
130c61ffcf
* initial AWS terraform
59 lines
1.3 KiB
HCL
59 lines
1.3 KiB
HCL
terraform {
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "~> 4.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
name = "${var.name}-${lower(var.role)}"
|
|
}
|
|
|
|
|
|
resource "aws_launch_configuration" "control_plane_launch_config" {
|
|
name_prefix = local.name
|
|
image_id = var.image_id
|
|
instance_type = var.instance_type
|
|
iam_instance_profile = var.iam_instance_profile
|
|
metadata_options {
|
|
http_tokens = "required"
|
|
}
|
|
|
|
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "aws_autoscaling_group" "control_plane_autoscaling_group" {
|
|
name = local.name
|
|
launch_configuration = aws_launch_configuration.control_plane_launch_config.name
|
|
min_size = 1
|
|
max_size = 10
|
|
desired_capacity = var.instance_count
|
|
vpc_zone_identifier = [var.subnetwork]
|
|
target_group_arns = var.target_group_arns
|
|
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
|
|
tag {
|
|
key = "Name"
|
|
value = local.name
|
|
propagate_at_launch = true
|
|
}
|
|
tag {
|
|
key = "constellation-role"
|
|
value = var.role
|
|
propagate_at_launch = true
|
|
}
|
|
tag {
|
|
key = "constellation-uid"
|
|
value = var.uid
|
|
propagate_at_launch = true
|
|
}
|
|
}
|