-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
Hello together,
I have problems to implement a template for wildcard domains. I need this for preview deployments.
My idea was the following:
- I have created a simple A Record modification like this:
{
"providerId": "hav.sh",
"providerName": "HAV.sh",
"serviceId": "hosting",
"serviceName": "HAV.sh Hosting",
"description": "Set up DNS records for HAV.sh managed hosting.",
"version": 1,
"logoUrl": "https://hav.sh/images/logo.svg",
"variableDescription": "IP address of the HAV.sh managed server.",
"syncPubKeyDomain": "hav.sh",
"syncRedirectDomain": "hav.sh",
"records": [
{
"type": "A",
"host": "@",
"pointsTo": "%IP%",
"ttl": 3600
}
]
}That is validated.
- I have tried to create a second one for the preview deployments (maybe I can combine both but it is only a wildcard if it supports preview deployments) but it does not get validated. I culdn't find any information about this problem.
{
"providerId": "hav.sh",
"providerName": "HAV.sh",
"serviceId": "wildcard-hosting",
"serviceName": "HAV.sh Wildcard Hosting",
"description": "Set up a wildcard DNS record for HAV.sh managed hosting.",
"version": 1,
"logoUrl": "https://hav.sh/images/logo.svg",
"variableDescription": "Prefix address of the HAV.sh managed server.",
"syncPubKeyDomain": "hav.sh",
"syncRedirectDomain": "hav.sh",
"records": [
{
"type": "CNAME",
"host": "*",
"pointsTo": "%prefix%.hav.sh",
"ttl": "300"
}
]
}I also tried that but it doesn't get validated:
Would appreciate some help here.
Thanks!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels