Skip to content

Commit

Permalink
Update phish.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
Itsparththing authored Nov 15, 2024
1 parent 37c3418 commit f70ccfc
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions redinfracraft/Terraform/Phishing/phish.tf
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,22 @@ data "aws_vpc" "default" {
}



# Output the public IP of the instance
output "instance_ip" {
value = "Machine Ip: ${aws_instance.Terra_Phish_Ec2.public_ip}"
}
value = <<EOF
************************************************************
| 🖥️ Machine Ip: ${aws_instance.Terra_Phish_Ec2.public_ip} |
************************************************************
EOF
}

# Output the Username of the instance
output "username" {
value = "Username of Machine: ubuntu"
value = <<EOF
**********************************
| 👤 Username of Machine: ubuntu |
**********************************
EOF
}

0 comments on commit f70ccfc

Please sign in to comment.