9 lines
267 B
Terraform
9 lines
267 B
Terraform
|
# output "compute_ami" {
|
||
|
# description = "Prints the image AMI installed on our EC2s."
|
||
|
# value = data.aws_ami.compute_ami
|
||
|
# }
|
||
|
|
||
|
output "public_ec2" {
|
||
|
description = "Prints the ARN for the publicly accessible EC2"
|
||
|
value = module.standalone_ec2.arn
|
||
|
}
|