Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Visit https://goreleaser.com for documentation on how to customize this
# behavior.
version: 2
env:
- PROVIDER_VERSION=3.4.1
- PROVIDER_VERSION=4.0.0
before:
hooks:
# this is just an example and not a requirement for provider building/publishing
- go mod tidy
snapshot:
name_template: '{{ .Env.PROVIDER_VERSION }}'
version_template: '{{ .Env.PROVIDER_VERSION }}'
builds:
- env:
# goreleaser does not work with CGO, it could also complicate
Expand Down Expand Up @@ -41,7 +42,7 @@ builds:
- CP_TARGET={{ .Target }}
- CP_VERSION={{ .Env.PROVIDER_VERSION }}
archives:
- format: zip
- formats: [ 'zip' ]
name_template: '{{ .ProjectName }}_{{ .Env.PROVIDER_VERSION }}_{{ .Os }}_{{ .Arch }}'
checksum:
extra_files:
Expand Down
90 changes: 45 additions & 45 deletions .whitesource
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"scanSettings": {
"configMode": "AUTO",
"configExternalURL": "",
"projectToken": "",
"enableLicenseViolations": "true",
"displayLicenseViolations": "true",
"enableIaC": "true",
"baseBranches": []
},
"scanSettingsSAST": {
"enableScan": true,
"scanPullRequests": true,
"incrementalScan": true,
"baseBranches": [],
"snippetSize": 10
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff",
"useMendCheckNames": true
},
"checkRunSettingsSAST": {
"checkRunConclusionLevel": "failure",
"severityThreshold": "high"
},
"issueSettings": {
"minSeverityLevel": "LOW",
"issueType": "DEPENDENCY"
},
"issueSettingsSAST": {
"minSeverityLevel": "high",
"issueType": "repo"
},
"remediateSettings": {
"workflowRules": {
"enabled": true
}
},
"imageSettings":{
"imageTracing":{
"enableImageTracingPR": false,
"addRepositoryCoordinate": false,
"addDockerfilePath": false,
"addMendIdentifier": false
}
"scanSettings": {
"configMode": "AUTO",
"configExternalURL": "",
"projectToken": "",
"enableLicenseViolations": "true",
"displayLicenseViolations": "true",
"enableIaC": "true",
"baseBranches": []
},
"scanSettingsSAST": {
"enableScan": true,
"scanPullRequests": true,
"incrementalScan": true,
"baseBranches": [],
"snippetSize": 10
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff",
"useMendCheckNames": true
},
"checkRunSettingsSAST": {
"checkRunConclusionLevel": "failure",
"severityThreshold": "high"
},
"issueSettings": {
"minSeverityLevel": "LOW",
"issueType": "DEPENDENCY"
},
"issueSettingsSAST": {
"minSeverityLevel": "high",
"issueType": "repo"
},
"remediateSettings": {
"workflowRules": {
"enabled": true
}
},
"imageSettings":{
"imageTracing":{
"enableImageTracingPR": false,
"addRepositoryCoordinate": false,
"addDockerfilePath": false,
"addMendIdentifier": false
}
}
}
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ HOSTNAME=delphix.com
NAMESPACE=dct
NAME=delphix
BINARY=terraform-provider-${NAME}
VERSION=3.4.1
VERSION=4.0.0
OS_ARCH=darwin_arm64

default: install
Expand Down
8 changes: 5 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ If you are a DCT customer, you can also request support from the [Delphix Suppor

| Product | Version |
|--------------------------------|----------|
| Data Control Tower (DCT) | v2025.1.2+ |
| Data Control Tower (DCT) | v2025.2.0+ |
| Delphix Continuous Data Engine | v29.0.0.0+ |

Note: The DCT and Continuous Data versions above guarantees full provider support. However, each resource might support older versions. Refer to the specific resource documentation page for more information.
Expand All @@ -40,7 +40,7 @@ terraform {
required_providers {
delphix = {
source = "delphix-integrations/delphix"
version = "3.4.0"
version = "4.0.0"
}
}
}
Expand Down Expand Up @@ -79,4 +79,6 @@ Consult the Resources section for details on individual resources, such as VDB,
| delphix_oracle_dsource | v 3.1.0 | v 10.0.0 |
| delphix_database_postgresql | v 3.2.0 | v 14.0.0 |
| delphix_vdb update<br>delphix_database_postgresql import | v 3.3.0 | v 22.0.0 |
| delphix_oracle_dsource update<br>delphix_oracle_dsource import | v 3.4.0 | v 2025.1.2 |
| delphix_oracle_dsource update<br>delphix_oracle_dsource import | v 3.4.1 | v 2025.1.2 |
| delphix_appdata_dsource update<br>delphix_appdata_dsource import | v 4.0.0 | v 2025.2.0 |
| delphix_environment update<br>delphix_environment import | v 4.0.0 | v 2025.2.0 |
Loading