Skip to content

Commit eedc358

Browse files
authored
Fix spelling of tagOwners and autoApprovers (#46)
Use canonical spelling for tagOwners and autoApprovers tags.
1 parent 0b5de5f commit eedc358

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tailscale/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@ type (
292292
// ACL contains the schema for a tailnet policy file. More details: https://tailscale.com/kb/1018/acls/
293293
ACL struct {
294294
ACLs []ACLEntry `json:"acls,omitempty" hujson:"ACLs,omitempty"`
295-
AutoApprovers *ACLAutoApprovers `json:"autoapprovers,omitempty" hujson:"AutoApprovers,omitempty"`
295+
AutoApprovers *ACLAutoApprovers `json:"autoApprovers,omitempty" hujson:"AutoApprovers,omitempty"`
296296
Groups map[string][]string `json:"groups,omitempty" hujson:"Groups,omitempty"`
297297
Hosts map[string]string `json:"hosts,omitempty" hujson:"Hosts,omitempty"`
298-
TagOwners map[string][]string `json:"tagowners,omitempty" hujson:"TagOwners,omitempty"`
298+
TagOwners map[string][]string `json:"tagOwners,omitempty" hujson:"TagOwners,omitempty"`
299299
DERPMap *ACLDERPMap `json:"derpMap,omitempty" hujson:"DerpMap,omitempty"`
300300
Tests []ACLTest `json:"tests,omitempty" hujson:"Tests,omitempty"`
301301
SSH []ACLSSH `json:"ssh,omitempty" hujson:"SSH,omitempty"`

0 commit comments

Comments
 (0)