Skip to content

Instantly share code, notes, and snippets.

@khushi20218
Created September 6, 2020 15:21
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 khushi20218/23b3f34e1747b347e219dd5dff92f802 to your computer and use it in GitHub Desktop.
Save khushi20218/23b3f34e1747b347e219dd5dff92f802 to your computer and use it in GitHub Desktop.
# open on chrome
resource "null_resource" "openwebsite" {
depends_on = [
kubernetes_service.wp_service
]
provisioner "local-exec" {
command = "minikube service ${kubernetes_service.wp_service.metadata[0].name}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment