Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Option for allowing unauthenticated requests #399

Closed
aflmp opened this issue Dec 9, 2023 · 1 comment · Fixed by #409
Closed

Option for allowing unauthenticated requests #399

aflmp opened this issue Dec 9, 2023 · 1 comment · Fixed by #409

Comments

@aflmp
Copy link

aflmp commented Dec 9, 2023

Hi there,
Is there an option for allowing unauthenticated requests to the cloud-function just like https://cloud.google.com/sdk/gcloud/reference/functions/deploy#--[no-]allow-unauthenticated ? I'm only seeing authenticated requests being allowed right now, below is the config that i'm using

- id: deploy
      uses: google-github-actions/deploy-cloud-functions@v1
      with:
        name: some-function
        runtime: go121
@Kurtz1993
Copy link

@aflmp I think it that using the option:

ingress_settings: ALLOW_ALL will do that.

Try updating your settings as follows:

- id: deploy
      uses: google-github-actions/deploy-cloud-functions@v1
      with:
        name: some-function
        runtime: go121
        ingress_settings: ALLOW_ALL

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging a pull request may close this issue.

2 participants