Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabil-Lahssini committed Sep 26, 2023
1 parent 04afe0c commit d349e86
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/resources/connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ resource "looker_connection" "example" {
password = "polite-sculpin"
ssl = true
max_connections = 5
user_attribute_fields = []
}
```

Expand All @@ -32,10 +33,11 @@ resource "looker_connection" "example" {
id = "testdummy901"
max_connections = 5
name = "testdummy901"
# password = (sensitive value)
password = (sensitive value)
port = "5432"
ssl = true
username = "hegdgxme"
user_attribute_fields = []
}
```

Expand Down Expand Up @@ -340,6 +342,7 @@ resource "looker_connection" "example" {
- `ssl` (Boolean)
- `tmp_db_name` (String)
- `tunnel_id` (String)
- `user_attribute_fields` (List of String)
- `user_db_credentials` (Boolean)
- `username` (String)
- `verify_ssl` (Boolean)
Expand Down
1 change: 1 addition & 0 deletions examples/resources/looker_connection/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ resource "looker_connection" "example" {
password = "polite-sculpin"
ssl = true
max_connections = 5
user_attribute_fields = []
}
3 changes: 2 additions & 1 deletion examples/resources/looker_connection/resource.tfshow
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ resource "looker_connection" "example" {
id = "testdummy901"
max_connections = 5
name = "testdummy901"
# password = (sensitive value)
password = (sensitive value)
port = "5432"
ssl = true
username = "hegdgxme"
user_attribute_fields = []
}

0 comments on commit d349e86

Please sign in to comment.