Skip to content

Commit f8a82e1

Browse files
updates to documentation and default to 0 for wait_time
1 parent 17c1c6c commit f8a82e1

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

docs/resources/appdata_dsource.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ The Appdata dSource resource allows Terraform to create and delete AppData dSour
88
## System Requirements
99

1010
* Data Control Tower v10.0.1+ is required for dSource management. Lower versions are not supported.
11-
* This Appdata dSource Resource only supports Appdata based datasources , such as POSTGRES,SAP HANA, IBM Db2, etc.The below examples are shown from the PostgreSQL context. See the Oracle dSource Resource for the support of Oracle. The Delphix Provider does not support Oracle, SQL Server, or SAP ASE.
11+
* This Appdata dSource Resource only supports Appdata based datasource's , such as POSTGRES,SAP HANA, IBM Db2, etc.The below examples are shown from the PostgreSQL context. See the Oracle dSource Resource for the support of Oracle. The Delphix Provider does not support Oracle, SQL Server, or SAP ASE.
12+
13+
## Upgrade Guide
14+
* Any new dSource created post Version>=3.2.1 can set `wait_time` to wait for snapshot creation , dSources created prior to this version will not support this capability
1215

1316
## Example Usage
1417

internal/provider/resource_appdata_dsource.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@ func resourceAppdataDsource() *schema.Resource {
329329
},
330330
"wait_time": {
331331
Type: schema.TypeInt,
332+
Default: 0,
332333
Optional: true,
333334
},
334335
"skip_wait_for_snapshot_creation": {

internal/provider/resource_oracle_dsource.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,7 @@ func resourceOracleDsource() *schema.Resource {
533533
},
534534
"wait_time": {
535535
Type: schema.TypeInt,
536+
Default: 0,
536537
Optional: true,
537538
},
538539
"skip_wait_for_snapshot_creation": {

0 commit comments

Comments
 (0)