Skip to content

Commit 6c0ac7e

Browse files
authored
fix: correct error msg for missing secure token (#377)
1 parent 32cebf1 commit 6c0ac7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sysdig/sysdig_clients.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func getSysdigSecureVariables(data *schema.ResourceData) (*sysdigVariables, erro
9898
}
9999

100100
if token, ok = data.GetOk("sysdig_secure_api_token"); !ok {
101-
return nil, errors.New("missing sysdig monitor token")
101+
return nil, errors.New("missing sysdig secure token")
102102
}
103103

104104
return &sysdigVariables{

0 commit comments

Comments
 (0)