Difference between revisions of "Self."

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
  [[self.private_ip]]
 
  [[self.private_ip]]
  
 +
 +
{{local-exec mysql ex}}
  
 
== Related ==
 
== Related ==

Revision as of 08:45, 31 March 2023

self.ipv4_address
self.private_ip


  provisioner "local-exec" {
   command = "mysql --host=${self.address} --port=${self.port} --user=${self.username} --password=${self.password} < ./schema.sql"
   }
 }

Related

 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

Advertising: