You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Sample Terraform config that describes how the new resource might look.resource"powerplatform_copilot_studio_application_insights" {
environment_id="{GUID}"bot_id="{GUID}"connection_string="InstrumentationKey={GUID};IngestionEndpoint=https://westus2-2.in.applicationinsights.azure.com/;LiveEndpoint=https://westus2.livediagnostics.monitor.azure.com/;ApplicationId={GUID}"// optionally configure other settings?
}
Definition of Done
Data Transfer Objects (dtos)
Data Client functions
Resource Implementation
Resource Added to Provider
Unit Tests for Happy Path
Unit Tests for error path
Acceptance Tests
Example in the /examples folder
Schema Documentation in code
Updated auto-generated provider docs with make docs
Contributions
Do you plan to raise a PR to address this issue? YES / NO?
See the contributing guide for more information about what's expected for contributions.
The text was updated successfully, but these errors were encountered:
This is also something we could potentially support temporarily with a REST call if we don't feel like it's something that belongs in the provider. Challenge would be getting the PVA / CPS endpoint since we don't expose that from the environment.
Description
Add the ability to configure application insights for a Copilot Studio environment.
Resource
powerplatform_copilot_studio_application_insights
The Copilot Studio API enpoint is available in the the BAPI environment get under
runtimeEndpoints/microsoft.PowerVirtualAgents
API:
https://{pva_endpoint}/api/botmanagement/2022-01-15/environments/{environment_id}/bots/{bot_id}/applicationinsightsconfiguration
{
"appInsightsConnectionString": "",
"includeSensitiveInformation": true,
"includeActivities": true,
"includeActions": true,
"networkIsolation": "PublicNetwork",
"errors": null
}
Potential Terraform Configuration
Definition of Done
make docs
Contributions
Do you plan to raise a PR to address this issue? YES / NO?
See the contributing guide for more information about what's expected for contributions.
The text was updated successfully, but these errors were encountered: