Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save izmilia-prastika/ee5642cd8462afdd25b95f19765b2c97 to your computer and use it in GitHub Desktop.
Save izmilia-prastika/ee5642cd8462afdd25b95f19765b2c97 to your computer and use it in GitHub Desktop.
Contoh Output Terraform AWS
output "endpoints" {
value = {
ssh_access = "ssh ubuntu@${aws_instance.demo.public_ip}"
public_ip = aws_instance.demo.public_ip
public_dns = aws_instance.demo.public_dns
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment