You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/resources/appdata_dsource.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -184,7 +184,7 @@ The following arguments apply to all dSources but they are not often necessary f
184
184
*`value` - (Required) Value of the tag
185
185
*`ignore_tag_changes` – This flag enables whether changes in the tags are identified by terraform. By default, it is true, i.e, changes in tags of the resource are ignored.
186
186
187
-
## Import (Beta)
187
+
## Import
188
188
Use the import block to add Appdata dSources created directly in DCT into a Terraform state file.
189
189
190
190
For example:
@@ -195,7 +195,5 @@ import {
195
195
}
196
196
```
197
197
198
-
This is a beta feature. Delphix offers no guarantees of support or compatibility.
199
-
200
198
## Limitations
201
199
Not all properties are supported through the update command. Properties that are not supported by the update command are presented via an error message at runtime.
*`name` - The name of the environment. [Updatable]
77
+
*`description` - The environment description. [Updatable]
78
+
*`os_type` - (Required) Operating system type of the environment. Valid values are [UNIX, WINDOWS]
79
+
*`engine_id` - (Required) The DCT ID of the Engine on which to create the environment. This ID can be obtained by querying the DCT engines API. A Delphix Engine must be registered with DCT first for it to create an Engine ID.
80
+
*`is_cluster` - Whether the environment to be created is a cluster.
81
+
*`cluster_home` - Absolute path to cluster home directory. This parameter is (Required) for UNIX cluster environments. [Updatable]
82
+
*`staging_environment` - Id of the environment where Delphix (Windows) Connector is installed. This is a required parameter when creating Windows source environments.
83
+
*`connector_port` - Specify port on which Delphix connector will run. This is a (Required) parameter when creating Windows target environments. [Updatable]
84
+
*`is_target` - Whether the environment to be created is a target cluster environment. This property is used only when creating Windows cluster environments.
85
+
86
+
### Host Arguments
87
+
*`hostname` - (Required) Host Name or IP Address of the host that being added to Delphix. [Updatable]
88
+
*`ssh_port` - ssh port of the environment. [Updatable]
89
+
*`toolkit_path` - The path where Delphix toolkit can be pushed. [Updatable]
90
+
*`java_home` - The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used. [Updatable]
91
+
*`nfs_addresses` - Array of ip address or hostnames. Valid values are a list of addresses. For eg: ["192.168.10.2"][Updatable]
*`use_engine_public_key` - Whether to use public key authentication.
100
+
101
+
### SQL Server Authentication Arguments
102
+
*`username` - OS username to enable a connection from the engine. [Updatable]
103
+
*`password` - OS user's password. [Updatable]
104
+
*`vault` - The name or reference of the vault from which to read the host credentials.
105
+
*`hashicorp_vault_engine` – The Hashicorp Vault engine name where the credential is stored.
106
+
*`hashicorp_vault_secret_path` - Path in the Hashicorp Vault engine where the credential is stored.
107
+
*`hashicorp_vault_username_key` - Key for the username in the key-value store.
108
+
*`hashicorp_vault_secret_key` - Key for the password in the key-value store.
109
+
*`cyberark_vault_query_string` - Query to find a credential in the CyberArk vault.
110
+
*`use_kerberos_authentication` - Whether to use Kerberos authentication.
111
+
112
+
### SAP ASE (Sybase) Authentication Arguments
113
+
*`ase_db_username` - Username for the SAP ASE database.
114
+
*`ase_db_password` - Password for the SAP ASE database.
115
+
*`ase_db_vault` - The name or reference of the vault from which to read the SAP ASE database credentials.
116
+
*`ase_db_hashicorp_vault_engine` – The Hashicorp Vault engine name where the credential is stored.
117
+
*`ase_db_hashicorp_vault_secret_path` - Path in the Hashicorp Vault engine where the credential is stored.
118
+
*`ase_db_hashicorp_vault_username_key` - Key for the username in the key-value store.
119
+
*`ase_db_hashicorp_vault_secret_key` - Key for the password in the key-value store.
120
+
*`ase_db_cyberark_vault_query_string` - Query to find a credential in the CyberArk vault.
121
+
*`ase_db_use_kerberos_authentication` - Whether to use Kerberos authentication for SAP ASE DB discovery.
122
+
123
+
### Advanced Arguments
124
+
*`tags` - The tags to be created for this environment. This is a map of 2 parameters: [Updatable]
125
+
*`key` - (Required) Key of the tag
126
+
*`value` - (Required) Value of the tag
127
+
*`ignore_tag_changes` – This flag enables whether changes in the tags are identified by terraform. By default, it is true, i.e, changes in tags of the resource are ignored.
128
+
129
+
## Import
130
+
Use the import block to add Environments created directly in DCT into a Terraform state file.
131
+
132
+
For example:
133
+
```hcl
134
+
import {
135
+
to = delphix_environment.env_import_demo
136
+
id = "env_id"
137
+
}
138
+
```
139
+
140
+
## Limitations
141
+
Not all properties are supported through the update command. Properties that are not supported by the update command are presented via an error message at runtime.
*`name` - The name of the environment. [Updatable]
190
-
*`description` - The environment description. [Updatable]
191
-
*`os_type` - (Required) Operating system type of the environment. Valid values are [UNIX, WINDOWS]
192
-
*`engine_id` - (Required) The DCT ID of the Engine on which to create the environment. This ID can be obtained by querying the DCT engines API. A Delphix Engine must be registered with DCT first for it to create an Engine ID.
193
-
*`is_cluster` - Whether the environment to be created is a cluster.
194
-
*`cluster_home` - Absolute path to cluster home directory. This parameter is (Required) for UNIX cluster environments. [Updatable]
195
-
*`staging_environment` - Id of the environment where Delphix (Windows) Connector is installed. This is a required parameter when creating Windows source environments.
196
-
*`connector_port` - Specify port on which Delphix connector will run. This is a (Required) parameter when creating Windows target environments. [Updatable]
197
-
*`is_target` - Whether the environment to be created is a target cluster environment. This property is used only when creating Windows cluster environments.
198
-
199
-
### Host Arguments
200
-
*`hostname` - (Required) Host Name or IP Address of the host that being added to Delphix. [Updatable]
201
-
*`ssh_port` - ssh port of the environment. [Updatable]
202
-
*`toolkit_path` - The path where Delphix toolkit can be pushed. [Updatable]
203
-
*`java_home` - The path to the user managed Java Development Kit (JDK). If not specified, then the OpenJDK will be used. [Updatable]
204
-
*`nfs_addresses` - Array of ip address or hostnames. Valid values are a list of addresses. For eg: ["192.168.10.2"][Updatable]
*`use_engine_public_key` - Whether to use public key authentication.
213
-
214
-
### SQL Server Authentication Arguments
215
-
*`username` - OS username to enable a connection from the engine. [Updatable]
216
-
*`password` - OS user's password. [Updatable]
217
-
*`vault` - The name or reference of the vault from which to read the host credentials.
218
-
*`hashicorp_vault_engine` – The Hashicorp Vault engine name where the credential is stored.
219
-
*`hashicorp_vault_secret_path` - Path in the Hashicorp Vault engine where the credential is stored.
220
-
*`hashicorp_vault_username_key` - Key for the username in the key-value store.
221
-
*`hashicorp_vault_secret_key` - Key for the password in the key-value store.
222
-
*`cyberark_vault_query_string` - Query to find a credential in the CyberArk vault.
223
-
*`use_kerberos_authentication` - Whether to use Kerberos authentication.
224
-
225
-
### SAP ASE (Sybase) Authentication Arguments
226
-
*`ase_db_username` - Username for the SAP ASE database.
227
-
*`ase_db_password` - Password for the SAP ASE database.
228
-
*`ase_db_vault` - The name or reference of the vault from which to read the SAP ASE database credentials.
229
-
*`ase_db_hashicorp_vault_engine` – The Hashicorp Vault engine name where the credential is stored.
230
-
*`ase_db_hashicorp_vault_secret_path` - Path in the Hashicorp Vault engine where the credential is stored.
231
-
*`ase_db_hashicorp_vault_username_key` - Key for the username in the key-value store.
232
-
*`ase_db_hashicorp_vault_secret_key` - Key for the password in the key-value store.
233
-
*`ase_db_cyberark_vault_query_string` - Query to find a credential in the CyberArk vault.
234
-
*`ase_db_use_kerberos_authentication` - Whether to use Kerberos authentication for SAP ASE DB discovery.
235
-
236
-
### Advanced Arguments
237
-
*`tags` - The tags to be created for this environment. This is a map of 2 parameters: [Updatable]
238
-
*`key` - (Required) Key of the tag
239
-
*`value` - (Required) Value of the tag
240
-
*`ignore_tag_changes` – This flag enables whether changes in the tags are identified by terraform. By default, it is true, i.e, changes in tags of the resource are ignored.
241
-
242
-
## Import (Beta)
243
-
Use the import block to add Appdata dSources created directly in DCT into a Terraform state file.
244
-
245
-
For example:
246
-
```hcl
247
-
import {
248
-
to = delphix_environment.env_import_demo
249
-
id = "env_id"
250
-
}
251
-
```
252
-
253
-
This is a beta feature. Delphix offers no guarantees of support or compatibility.
254
-
255
-
## Limitations
256
-
Not all properties are supported through the update command. Properties that are not supported by the update command are presented via an error message at runtime.
Copy file name to clipboardExpand all lines: docs/resources/oracle_dsource.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ Any combination of the following hooks can be provided on the Oracle dSource res
142
142
*`azure_vault_secret_key` - Azure vault key in the key-value store.
143
143
*`cyberark_vault_query_string` - Query to find a credential in the CyberArk vault.
144
144
145
-
## Import (Beta)
145
+
## Import
146
146
Use the [`import` block](https://developer.hashicorp.com/terraform/language/import) to add Oracle Dsources created directly in DCT into a Terraform state file.
147
147
148
148
For example:
@@ -152,7 +152,6 @@ import {
152
152
id = "dsource_id"
153
153
}
154
154
```
155
-
*This is a beta feature. Delphix offers no guarantees of support or compatibility.*
0 commit comments