forked from terraform-aws-modules/terraform-aws-key-pair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
24 lines (18 loc) · 798 Bytes
/
main.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
################################################################################
# Key Pair
################################################################################
resource "aws_key_pair" "this" {
count = var.create ? 1 : 0
key_name = var.key_name
key_name_prefix = var.key_name_prefix
public_key = var.create_private_key ? trimspace(tls_private_key.this[0].public_key_openssh) : var.public_key
tags = var.tags
}
################################################################################
# Private Key
################################################################################
resource "tls_private_key" "this" {
count = var.create && var.create_private_key ? 1 : 0
algorithm = var.private_key_algorithm
rsa_bits = var.private_key_rsa_bits
}