Vault Enterprise non-voter configuration for autoscaling appears to be ignored

Below is my vault.hc1 configuration for vault entprise (LIC is installed) I have tried placing the non-voter=“true” in the below config and it is ignored. any help would be appreciated I am trying to created a non-voting performance standby in a autoscale group in AWS

  path    = "/opt/vault/data"
  node_id = "$instance_id"
  retry_join {
    auto_join = "provider=aws region=${region} tag_key=${name}-vault tag_value=server"
    auto_join_scheme = "https"
    leader_tls_servername = "${leader_tls_servername}"
    leader_ca_cert_file = "/opt/vault/tls/vault-ca.pem"
    leader_client_cert_file = "/opt/vault/tls/vault-cert.pem"
    leader_client_key_file = "/opt/vault/tls/vault-key.pem"
    non-voter=“true” 
  }
}```

Not sure if it’s displaying weird for anybody else (seems to be missing some text and being interpreted as MathML in spots) but can you wrap your code sample in triple single quotes like this:

```hcl
storage “raft” {
path = “/opt/vault/data”

}
```

It’ll show up more cleanly like

storage “raft” {
  path = “/opt/vault/data”
  ...
}

Thank you, I appreciate the help. I corrected the post and that is the existing config. I have looked at a lot of examples for Vault Enterprise, but haven’t been able to find an example.

I’ve been digging through the documentation and the only references I see are for Vault’s integrated storage and Consul Agent’s configuration:

As far as I can tell it looks like the Vault cluster self manages the performance standbys as implied by this page: