Skip to content

Commit 7cb419d

Browse files
author
Ryan Jiang
authored
Merge pull request #12 from jbankes/main
2 parents 7fb09fd + 00faa0e commit 7cb419d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/aws_ec2_standalone/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "retool" {
1515
aws_region = "<your-aws-region>"
1616
vpc_id = "<your-vpc-id>"
1717
subnet_id = "<your-subnet-1>"
18-
ssh_key_pair = "<your-key-pair>"
18+
ssh_key_name = "<your-key-pair-name>"
1919
version_number = "<desired-retool-version (e.g. 2.69.18)>"
2020
2121
# Additional configuration

modules/aws_ec2_standalone/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ output "ec2_arn" {
44
}
55

66
output "ec2_id" {
7-
value = aws_instance.this.arn
7+
value = aws_instance.this.id
88
description = "ID of EC2 Instance"
99
}
1010

0 commit comments

Comments
 (0)