Difference between revisions of "Terraform provisioner: local-exec"
Jump to navigation
Jump to search
Line 16: | Line 16: | ||
== See also == | == See also == | ||
− | * {{ | + | * {{tf provisioners}} |
[[Category:Terraform]] | [[Category:Terraform]] |
Revision as of 08:47, 31 March 2023
provisioner "local-exec" { command = "echo your_text_goes_here" }
provisioner "local-exec" { command = "mysql --host=${self.address} --port=${self.port} --user=${self.username} --password=${self.password} < ./schema.sql" } }
resource "aws_instance" "your_web" { # ... provisioner "local-exec" { command = "echo The server's IP address is ${self.private_ip}" } }
Related
See also
Advertising: