Skip to content

Commit ca5c0b4

Browse files
committed
Review Comments
1 parent 0325c7d commit ca5c0b4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# <provider> Delphix Provider
22

3-
The Terraform Provider for Delphix enables customers to natively manage data-as-code along with their infrastructure.
4-
With Terraform and Delphix, customers can now automatically provision, manage, and teardown any number of ephemeral data environments to drive enterprise DevOps workflows, such as test data management.
3+
The Terraform Provider for Delphix enables you to natively manage data-as-code along with your infrastructure.
4+
5+
With Terraform and Delphix, you can now automatically provision, manage, and teardown any number of ephemeral data environments to drive enterprise DevOps workflows, such as test data management.
56

67
This provider communicates directly with Data Control Tower (DCT) to generated virtual database and other objects. Therefore, DCT must be registered with one or more Delphix Continuous Data Engines.
78

89
To learn more about Delphix and DCT APIs, refer to [Delphix Documentation](https://documentation.delphix.com/docs/) and [DCT Documentation](https://dct.delphix.com/docs/latest/) respectively. Please [Contact us](ask-integrations@delphix.com) (ask-integrations@delphix.com) with any questions.
910

10-
Customers who are entitled to Data Control Tower may also send support issues through the [Delphix Support Portal](https://support.delphix.com/).
11+
If you are entitled to Data Control Tower then you may also send support issues through the [Delphix Support Portal](https://support.delphix.com/).
1112

1213
## System Requirements
1314

@@ -46,7 +47,7 @@ terraform {
4647
provider "delphix" {
4748
host = "dct_hostname"
4849
key = "dct_api_key"
49-
tls_insecure_skip = true
50+
tls_insecure_skip = false
5051
}
5152
5253
# Provision a VDB
@@ -60,7 +61,7 @@ resource "delphix_vdb" "vdb_name" {
6061

6162
* __host__: The hostname for DCT.
6263
* __key__ : The API Key which is used to authenticate with DCT. (Example `apk 2.abc123...`).
63-
* __tls_insecure_skip__: (Optional) A boolean value which determines whether to skip the SSL/TLS check. The dfault value is `false`. Skipping any SSL/TLS check is not recommended for production environments.
64+
* __tls_insecure_skip__: (Optional) A boolean value which determines whether to skip the SSL/TLS check. The default value is `false`. Skipping any SSL/TLS check is not recommended for production environments.
6465
* __host_scheme__: (Optional) Determines the configured host URL's scheme. The default value is `https`.
6566

6667
Consult the documentation's Resources section for details on individual resources, such as VDB, dSource, and Environment.

0 commit comments

Comments
 (0)