Skip to content

Commit cb8b70a

Browse files
committed
fix formatting
1 parent 4a27641 commit cb8b70a

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

docs/deploying/integration-requests.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Integration requests streamline your deployment process by automatically associating the necessary OAuth integrations with your content, eliminating the need for manual configuration and ensuring that your deployed content has immediate access to the external services that it depends on.
1+
Integration requests streamline your deployment process by automatically associating the necessary OAuth integrations with your content, eliminating the need for manual configuration and ensuring that your deployed content has immediate access to the external resources that it depends on.
22

33
You can define integration requests for your content by defining `integration_requests` in your content's `manifest.json` file. The base `manifest.json` file can be produced using the [`write-manifest`](../commands/write-manifest.md) command, but you will need to edit the file by hand to add the `integration_requests`.
44

@@ -18,6 +18,7 @@ There are a variety of different fields that can be used within an integration r
1818
| `config` | Configuration settings for the integration | key-value match | `"{"auth_mode": "Confidential"}"` |
1919

2020
Possible values for `type` include:
21+
2122
- `azure`
2223
- `azure-openai`
2324
- `sharepoint`
@@ -35,6 +36,7 @@ Possible values for `type` include:
3536
- `custom`
3637

3738
Possible values for `auth_type` include:
39+
3840
- `Viewer`
3941
- `Service Account`
4042
- `Visitor API Key`
@@ -45,7 +47,7 @@ An integration request can contain any combination of the fields listed above, a
4547

4648
#### Using the integration guid
4749

48-
If the content will only ever be deployed to a single server, the easiest way to make sure an OAuth integration gets automatically associated with it is by only listing the OAuth integration `guid` in the integration request:
50+
If the content will only ever be deployed to a single server, the easiest way to make sure the correct OAuth integration gets automatically associated is by listing the OAuth integration `guid` in the integration request:
4951

5052
```json
5153

@@ -75,11 +77,17 @@ A Connect administrator can locate the `guid` for an OAuth integration by naviga
7577

7678
```json
7779
{
78-
// ...
79-
"integration_requests": [
80-
{"name": "custom-integration", "type": "custom", "config": {"auth_mode": "Confidential"}}
81-
]
82-
// ...
80+
// ...
81+
"integration_requests": [
82+
{
83+
"name": "custom-integration",
84+
"type": "custom",
85+
"config": {
86+
"auth_mode": "Confidential"
87+
}
88+
}
89+
]
90+
// ...
8391
}
8492
```
8593

0 commit comments

Comments
 (0)