I was trying to set up Terraform for alert auto-pr...
# signoz-cloud
n
I was trying to set up Terraform for alert auto-provisioning and was wondering if there's currently a way to specify the SigNoz Cloud endpoint (
<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 guidance
right now I getting this err , while setting cloud endpoint
Copy code
provider "signoz" {
  endpoint = "ingest.in.signoz.cloud"
  access_token = "<my-endpoint>"
}
v
Hi @Nishchay Veer, The
<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.
Copy code
provider "signoz" {
  endpoint = "<name>.in.signoz.cloud"
  access_token = "<generated from the access tokens page in settings>"
}
n
Thanks for the help @Vibhu Pandey 🙌