We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803c579 commit 7a11e14Copy full SHA for 7a11e14
1 file changed
docs/index.md
@@ -12,6 +12,8 @@ The Redshift provider provides configuration management resources for
12
13
## Example Usage
14
15
+Please note that only one authentication method can be used at a time. There is no logic to fall back to another method if the first one fails.
16
+
17
### Authentication using fixed password
18
19
```terraform
@@ -22,6 +24,18 @@ provider "redshift" {
22
24
}
23
25
```
26
27
+### Authentication using Redshift Data API
28
29
+```terraform
30
+provider "redshift" {
31
+ database = var.redshift_database
32
+ data_api {
33
+ workgroup_name = var.redshift_workgroup
34
+ region = var.aws_region
35
+ }
36
+}
37
+```
38
39
### Authentication using temporary credentials
40
41
0 commit comments