forked from okta/terraform-provider-okta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic.tf
More file actions
36 lines (31 loc) · 654 Bytes
/
Copy pathbasic.tf
File metadata and controls
36 lines (31 loc) · 654 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
resource "okta_inline_hook" "test" {
name = "testAcc_replace_with_uuid"
version = "1.0.1"
type = "com.okta.oauth2.tokens.transform"
channel = {
type = "HTTP"
version = "1.0.0"
uri = "https://example.com/test"
method = "POST"
}
auth = {
key = "Authorization"
type = "HEADER"
value = "123"
}
}
resource "okta_inline_hook" "twilio" {
name = "twillio"
version = "1.0.0"
type = "com.okta.telephony.provider"
channel = {
version = "1.0.0"
uri = "https://example.com/test"
method = "POST"
}
auth = {
key = "Authorization"
type = "HEADER"
value = "secret"
}
}