Nishchay Veer
10/25/2024, 2:21 PM<http://ingest.in|ingest.in>.signoz.cloud:443
) in the Terraform provider configuration, instead of a self-hosted endpoint. Has anyone successfully configured this, or are there any known limitations with using the SigNoz Cloud for this purpose? Thanks in advance for any guidanceNishchay Veer
10/25/2024, 2:23 PMprovider "signoz" {
endpoint = "ingest.in.signoz.cloud"
access_token = "<my-endpoint>"
}
Vibhu Pandey
10/25/2024, 2:58 PM<http://ingest.in|ingest.in>.signoz.cloud
endpoint is only for ingestion.
You need to use <name>.in.signoz.cloud
where <name> is the name of your signoz deployment in the terraform provider.
provider "signoz" {
endpoint = "<name>.in.signoz.cloud"
access_token = "<generated from the access tokens page in settings>"
}
Nishchay Veer
10/26/2024, 4:30 AM