We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7fb09fd + 00faa0e commit 7cb419dCopy full SHA for 7cb419d
modules/aws_ec2_standalone/README.md
@@ -15,7 +15,7 @@ module "retool" {
15
aws_region = "<your-aws-region>"
16
vpc_id = "<your-vpc-id>"
17
subnet_id = "<your-subnet-1>"
18
- ssh_key_pair = "<your-key-pair>"
+ ssh_key_name = "<your-key-pair-name>"
19
version_number = "<desired-retool-version (e.g. 2.69.18)>"
20
21
# Additional configuration
modules/aws_ec2_standalone/outputs.tf
@@ -4,7 +4,7 @@ output "ec2_arn" {
4
}
5
6
output "ec2_id" {
7
- value = aws_instance.this.arn
+ value = aws_instance.this.id
8
description = "ID of EC2 Instance"
9
10
0 commit comments