Skip to content

Commit

Permalink
Fix spelling of tagOwners and autoApprovers (#46)
Browse files Browse the repository at this point in the history
Use canonical spelling for tagOwners and autoApprovers tags.
  • Loading branch information
mangini committed Aug 31, 2023
1 parent 0b5de5f commit eedc358
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tailscale/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,10 +292,10 @@ type (
// ACL contains the schema for a tailnet policy file. More details: https://tailscale.com/kb/1018/acls/
ACL struct {
ACLs []ACLEntry `json:"acls,omitempty" hujson:"ACLs,omitempty"`
AutoApprovers *ACLAutoApprovers `json:"autoapprovers,omitempty" hujson:"AutoApprovers,omitempty"`
AutoApprovers *ACLAutoApprovers `json:"autoApprovers,omitempty" hujson:"AutoApprovers,omitempty"`
Groups map[string][]string `json:"groups,omitempty" hujson:"Groups,omitempty"`
Hosts map[string]string `json:"hosts,omitempty" hujson:"Hosts,omitempty"`
TagOwners map[string][]string `json:"tagowners,omitempty" hujson:"TagOwners,omitempty"`
TagOwners map[string][]string `json:"tagOwners,omitempty" hujson:"TagOwners,omitempty"`
DERPMap *ACLDERPMap `json:"derpMap,omitempty" hujson:"DerpMap,omitempty"`
Tests []ACLTest `json:"tests,omitempty" hujson:"Tests,omitempty"`
SSH []ACLSSH `json:"ssh,omitempty" hujson:"SSH,omitempty"`
Expand Down

0 comments on commit eedc358

Please sign in to comment.