You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`access_token_id` (String) Identifier for the access token linked to the service account.
80
+
-`active` (Boolean) Indicate whether the token is currently active or inactive
86
81
-`created_at` (String) Timestamp indicating when the access token was created.
87
82
-`id` (String) Unique internal resource ID for Terraform, formatted as "project_id,access_token_id".
88
83
-`token` (String, Sensitive) JWT access token for API authentication. Prefixed by 'Bearer' and should be stored securely as it is irretrievable once lost.
"rotate_when_changed": "A map of arbitrary key/value pairs that will force recreation of the token when they change, enabling token rotation based on external conditions such as a rotating timestamp. Changing this forces a new resource to be created.",
123
127
"access_token_id": "Identifier for the access token linked to the service account.",
124
128
"token": "JWT access token for API authentication. Prefixed by 'Bearer' and should be stored securely as it is irretrievable once lost.",
129
+
"active": "Indicate whether the token is currently active or inactive",
125
130
"created_at": "Timestamp indicating when the access token was created.",
126
131
"valid_until": "Estimated expiration timestamp of the access token. For precise validity, check the JWT details.",
ok:=errors.As(err, &oapiErr) //nolint:errorlint //complaining that error.As should be used to catch wrapped errors, but this error should not be wrapped
0 commit comments