We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97a116d commit 479e81dCopy full SHA for 479e81d
internal/manifest/v1alpha/examples/direct.go
@@ -169,6 +169,13 @@ func (d directExample) generateVariant(direct v1alphaDirect.Direct) v1alphaDirec
169
direct.Spec.ThousandEyes = &v1alphaDirect.ThousandEyesConfig{
170
OauthBearerToken: "[secret]",
171
}
172
+ case v1alpha.AzurePrometheus:
173
+ direct.Spec.AzurePrometheus = &v1alphaDirect.AzurePrometheusConfig{
174
+ URL: "https://prod-app.azuremonitor.com",
175
+ TenantID: "5cdecca3-c2c5-4072-89dd-5555faf05202",
176
+ ClientID: "70747025-9367-41a5-98f1-59b18b5793c3",
177
+ ClientSecret: "[secret]",
178
+ }
179
default:
180
panic(fmt.Sprintf("unexpected v1alpha.DataSourceType: %#v", d.typ))
181
0 commit comments