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
My use case is a RabbitMQ instance secured with Cloudflare Access. The short story is that it adds an extra authentication layer in front of a web endpoint; completing the auth flow for non-interactive access (such as by a Terraform provider) results in obtaining a session token; the token value is then to be sent along with each request to the protected service.
Many other "ZTA" or "Delegated SSO" solutions employ the same approach so I believe supporting arbitrary headers would enable or simplify the usage of the provider in such environments.
Would you be up for including this functionality? If so I could take a stab at implementing it - from what I understand this is mostly about extending the configuration interface + probably adjusting the RoundTripper to plug the headers everywhere.
The text was updated successfully, but these errors were encountered:
I would love to be able to configure the provider to send specific headers with each API request. Theoretically something along these lines:
My use case is a RabbitMQ instance secured with Cloudflare Access. The short story is that it adds an extra authentication layer in front of a web endpoint; completing the auth flow for non-interactive access (such as by a Terraform provider) results in obtaining a session token; the token value is then to be sent along with each request to the protected service.
Many other "ZTA" or "Delegated SSO" solutions employ the same approach so I believe supporting arbitrary headers would enable or simplify the usage of the provider in such environments.
Would you be up for including this functionality? If so I could take a stab at implementing it - from what I understand this is mostly about extending the configuration interface + probably adjusting the
RoundTripper
to plug the headers everywhere.The text was updated successfully, but these errors were encountered: