Hi everyone, I'm hoping someone can help me out here. 😅 I'm still getting used to Banyan and managing access for our devs.
Our users on Windows machines keep getting 'certificate invalid' or 'your connection isn't private' errors when trying to connect to our internal apps. It happens randomly, and a retry sometimes fixes it. Our Access Tier is deployed in AWS.
Is this a common issue? My team is starting to complain. Here's a snippet of our Terraform for the Access Tier, maybe I'm missing something:
```hcl
resource "banyan_access_tier" "example" {
name = "corp-at"
address = aws_eip.example.public_dns
cluster = "corp"
tunnel_port = 9756
console_port = 8443
}
```
Do I need to adjust something with the certs or the hostname? Any advice would be really appreciated.