Difference between revisions of "Self."
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
== See also == | == See also == | ||
+ | |||
* {{Terraform provisioners}} | * {{Terraform provisioners}} | ||
[[Category:Terraform]] | [[Category:Terraform]] |
Latest revision as of 08:46, 31 March 2023
self.ipv4_address self.private_ip
self.address self.port self.username self.password
provisioner "local-exec" { command = "mysql --host=${self.address} --port=${self.port} --user=${self.username} --password=${self.password} < ./schema.sql" } }
Related[edit]
resource "aws_instance" "your_web" { # ... provisioner "local-exec" { command = "echo The server's IP address is ${self.private_ip}" } }
resource "aws_instance" "web" { # ... provisioner "local-exec" { command = "echo The server's IP address is ${self.private_ip}" on_failure = continue } }
See also[edit]
Advertising: