Skip to content

Commit 288e63b

Browse files
author
Adam Bowen
committed
followed best practice for passwords
1 parent 5e9e93c commit 288e63b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main.tf.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
provider "delphix" {
22
url = "${var.url}"
33
delphix_admin_username = "delphix_admin"
4-
delphix_admin_password = "landshark"
4+
delphix_admin_password = "${var.delphix_admin_password}"
55
}
66

77
resource "delphix_environment" "my-target-env" {
@@ -55,3 +55,5 @@ variable "url" {
5555
variable "num_vdbs" {
5656
default = 1
5757
}
58+
59+
variable "delphix_admin_password" {}

0 commit comments

Comments
 (0)