Skip to content

Commit d08cbfc

Browse files
authored
Merge pull request #135 from delphix-integrations/engine-config-regn
Merge engine configuration changes to develop
2 parents ad9352d + 2b62f7c commit d08cbfc

File tree

9 files changed

+1495
-6
lines changed

9 files changed

+1495
-6
lines changed

examples/engine_config/main.tf

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* Summary: This template showcases the properties available when creating an source.
3+
*/
4+
5+
terraform {
6+
required_providers {
7+
delphix = {
8+
version = "3.3.0-beta"
9+
source = "delphix.com/dct/delphix"
10+
}
11+
}
12+
}
13+
14+
provider "delphix" {
15+
tls_insecure_skip = true
16+
key = "1.jTElhpXIao7pTNzVCYdkj1HpGXriTBlYbPha1Di8HjvMF6nESA1crkGlljowDs7y"
17+
host = "ubuntu-2-uv49-qar-125346-27a4593a.dlpxdc.co"
18+
}
19+
20+
resource "delphix_engine_configuration" "config" {
21+
engine_host = "http://eg22.dlpxdc.co"
22+
api_version = "1.11.31"
23+
sys_user = "xxx"
24+
sys_password = "xxx"
25+
user = "xxx"
26+
password = "xxx"
27+
email = "noreply@delphix.com"
28+
engine_type = "CD"
29+
}
30+

examples/engine_register/main.tf

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
terraform {
2+
required_providers {
3+
delphix = {
4+
version = "3.3.0-beta"
5+
source = "delphix.com/dct/delphix"
6+
}
7+
}
8+
}
9+
10+
provider "delphix" {
11+
tls_insecure_skip = true
12+
key = "1.jTElhpXIao7pTNzVCYdkj1HpGXriTBlYbPha1Di8HjvMF6nESA1crkGlljowDs7y"
13+
host = "ubuntu-2-uv49-qar-125346-27a4593a.dlpxdc.co"
14+
}
15+
16+
resource "delphix_engine_registration" "register" {
17+
hostname = "eg21.dlpxdc.co"
18+
name = "test_tf"
19+
username = "xxx"
20+
password = "xxx"
21+
insecure_ssl = true
22+
}

0 commit comments

Comments
 (0)