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
-`auth_method` (String) Authentication method. Defaults to `identity`. When set to `identity`, both `username` and `secret` are **required**. When set to `identity_service_user`, both `service_user` and `service_token` are **required**. Resolved from environment variable `IDSEC_AUTH_METHOD`.
83
83
-`cache_authentication` (Boolean) Cache authentication for the provider. Defaults to `true`. Resolved from environment variable `IDSEC_CACHE_AUTHENTICATION`.
84
+
-`proxy_address` (String) Proxy address for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_ADDRESS`. or the standard `HTTPS_PROXY`/`HTTP_PROXY` env vars.
85
+
-`proxy_password` (String, Sensitive) Proxy password for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_PASSWORD`.
86
+
-`proxy_username` (String) Proxy username for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_USERNAME`.
84
87
-`secret` (String, Sensitive) Secret for identity authentication. **Required** when `auth_method` is `identity` (default). Resolved from environment variable `IDSEC_SECRET`.
85
88
-`service_authorized_app` (String) Authorized application for identity service user authentication. Used when `auth_method` is `identity_service_user`. Defaults to `__idaptive_cybr_user_oidc`. Resolved from environment variable `IDSEC_SERVICE_AUTHORIZED_APP`.
86
89
-`service_token` (String, Sensitive) Service token for identity service user authentication. **Required** when `auth_method` is `identity_service_user`. Resolved from environment variable `IDSEC_SERVICE_TOKEN`.
Description: "Cache authentication for the provider. Defaults to true. Resolved from environment variable IDSEC_CACHE_AUTHENTICATION.",
174
178
MarkdownDescription: "Cache authentication for the provider. Defaults to `true`. Resolved from environment variable `IDSEC_CACHE_AUTHENTICATION`.",
175
179
},
180
+
"proxy_address": schema.StringAttribute{
181
+
Optional: true,
182
+
Description: "Proxy address for the provider to use for outgoing requests. Resolved from environment variable IDSEC_PROXY_ADDRESS. or the standard HTTPS_PROXY/HTTP_PROXY env vars.",
183
+
MarkdownDescription: "Proxy address for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_ADDRESS`. or the standard `HTTPS_PROXY`/`HTTP_PROXY` env vars.",
184
+
},
185
+
"proxy_username": schema.StringAttribute{
186
+
Optional: true,
187
+
Description: "Proxy username for the provider to use for outgoing requests. Resolved from environment variable IDSEC_PROXY_USERNAME.",
188
+
MarkdownDescription: "Proxy username for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_USERNAME`.",
189
+
},
190
+
"proxy_password": schema.StringAttribute{
191
+
Optional: true,
192
+
Description: "Proxy password for the provider to use for outgoing requests. Resolved from environment variable IDSEC_PROXY_PASSWORD.",
193
+
MarkdownDescription: "Proxy password for the provider to use for outgoing requests. Resolved from environment variable `IDSEC_PROXY_PASSWORD`.",
0 commit comments