feat(observability): add google chat to webhooks (#961)
This commit is contained in:
parent
971cd27e4b
commit
0f8362ca74
9 changed files with 112 additions and 23 deletions
|
|
@ -210,6 +210,7 @@ func (d *instanceDataSource) Schema(_ context.Context, _ datasource.SchemaReques
|
|||
"auth_password": schema.StringAttribute{
|
||||
Description: "SMTP authentication password.",
|
||||
Computed: true,
|
||||
Sensitive: true,
|
||||
},
|
||||
"auth_username": schema.StringAttribute{
|
||||
Description: "SMTP authentication username.",
|
||||
|
|
@ -262,11 +263,16 @@ func (d *instanceDataSource) Schema(_ context.Context, _ datasource.SchemaReques
|
|||
"url": schema.StringAttribute{
|
||||
Description: "The endpoint to send HTTP POST requests to. Must be a valid URL",
|
||||
Computed: true,
|
||||
Sensitive: true,
|
||||
},
|
||||
"ms_teams": schema.BoolAttribute{
|
||||
Description: "Microsoft Teams webhooks require special handling, set this to true if the webhook is for Microsoft Teams.",
|
||||
Computed: true,
|
||||
},
|
||||
"google_chat": schema.BoolAttribute{
|
||||
Description: "Google Chat webhooks require special handling, set this to true if the webhook is for Google Chat.",
|
||||
Computed: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue