Skip to content

Commit 5cbf47a

Browse files
addressed comments on password
1 parent 34e2218 commit 5cbf47a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

examples/jenkins-integration/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Jenkinsfile presents a simple CI/CD scenario where it provisions a VDB, runs
66
2) Insert or reference the associated `Jenkinsfile` file.
77
- Note: This Jenkinsfile also references the Terraform files in the `../simple-provision` folder. Feel free to fork, update, and modify those.
88
3) Update the following values:
9-
- DCT_HOSTNAME - Example: `10.134.0.1`
9+
- DCT_HOSTNAME - Example: `123.0.0.0`
1010
- DCT_API_KEY - Example: `2.abc...`
1111
- [Manage this value through the Jenkins' Credentials plugin](https://docs.cloudbees.com/docs/cloudbees-ci/latest/cloud-secure-guide/injecting-secrets)
1212
- In a pinch, update it directly.

examples/vdb/hana/bookmark/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ resource "delphix_vdb" "example" {
4545
"sTenantServicePort" = "xsengine:30052"
4646
}]
4747
tDatabaseName = "tfbkmrk"
48-
tSystemUserName = "SYSTEM"
49-
tSystemUserPassword ="Delphix_123"
48+
tSystemUserName = "<USERNAME>"
49+
tSystemUserPassword ="<PASSWORD>"
5050
})
5151
config_params jsonencode({
5252
processes = 150

examples/vdb/hana/snapshot/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ resource "delphix_vdb" "example" {
4646
"sTenantServicePort" = "xsengine:30052"
4747
}]
4848
tDatabaseName = "tfbkmrk"
49-
tSystemUserName = "SYSTEM"
50-
tSystemUserPassword ="Delphix_123"
49+
tSystemUserName = "<USERNAME>"
50+
tSystemUserPassword ="<PASSWORD>"
5151
})
5252
config_params jsonencode({
5353
processes = 150

examples/vdb/hana/timestamp/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ resource "delphix_vdb" "example" {
4747
"sTenantServicePort" = "xsengine:30052"
4848
}]
4949
tDatabaseName = "tfbkmrk"
50-
tSystemUserName = "SYSTEM"
51-
tSystemUserPassword ="Delphix_123"
50+
tSystemUserName = "<USERNAME>"
51+
tSystemUserPassword ="<PASSWORD>"
5252
})
5353
config_params jsonencode({
5454
processes = 150

0 commit comments

Comments
 (0)