Skip to content

Commit c84021b

Browse files
addressed review comments
1 parent ffc64d8 commit c84021b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Visit https://goreleaser.com for documentation on how to customize this
22
# behavior.
33
env:
4-
- PROVIDER_VERSION=3.0.0
4+
- PROVIDER_VERSION=2.1.0
55
before:
66
hooks:
77
# this is just an example and not a requirement for provider building/publishing

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ HOSTNAME=delphix.com
33
NAMESPACE=dct
44
NAME=delphix
55
BINARY=terraform-provider-${NAME}
6-
VERSION=3.0.0
6+
VERSION=2.1.0
77
OS_ARCH=darwin_amd64
88

99
default: install

docs/resources/appdata_dsource.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Resource: <resource name> delphix_appdata_dsource
22

3-
In Delphix terminology, a dSource is a database that the Delphix Virtualization Engine uses to create and update virtual copies of your database.
3+
In Delphix terminology, a dSource is a database that the Delphix Continuous Data Engine uses to create and update virtual copies of your database.
44
A dSource is created and managed by the Delphix Continuous Data Engine.
55

66

7-
The dSource resource allows terraform to CREATE, READ and DELETE dSources.
8-
Update operation is not supported. The supported parameters are listed below.
7+
The dSource resource allows Terraform to apply and destroy Delphix dSources.
8+
Modification of existing dSource resources is not supported. All supported parameters are listed below
99

1010
## Example Usage
11-
dSource Linking can be done in 3 methods , the parametes for these methods wary based on choice.
11+
dSource linking can be done in 3 methods , the parameters for these methods wary based on the linking mechanisum to be used.
1212

1313
```hcl
14-
# Link dSource using external backup.
14+
# Link dSource using external backup.
1515
1616
resource "delphix_appdata_dsource" "dsource_name" {
1717
source_id = SOURCE_ID
@@ -39,7 +39,7 @@ resource "delphix_appdata_dsource" "dsource_name" {
3939
})
4040
}
4141
42-
# Link dSource using delphix Initiated Backup.
42+
# Link dSource using Delphix Initiated Backup.
4343
4444
resource "delphix_appdata_dsource" "dsource_name" {
4545
source_id = SOURCE_ID
@@ -69,7 +69,7 @@ resource "delphix_appdata_dsource" "dsource_name" {
6969
})
7070
}
7171
72-
# Link dSource using single Database Ingestion.
72+
# Link dSource using Single Database Ingestion.
7373
7474
resource "delphix_appdata_dsource" "dsource_name" {
7575
source_id = SOURCE_ID

0 commit comments

Comments
 (0)