Code Monkey home page Code Monkey logo

Comments (2)

apamildner avatar apamildner commented on August 11, 2024

I don't know what you mean by "Token received from terraform configuration" and "Token received from UI". But I see in the tokens provided your azp differs, i.e the authorized party. Maybe you have forgotten to create a

resource "auth0_client_grant" "default"{
....
}

This is not a bug we are experiencing, but maybe I'm missing some details here.

from terraform-provider-auth0.

sergiught avatar sergiught commented on August 11, 2024

Really appreciate you taking a look at this @apamildner 🙇🏻! Indeed this doesn't seem to be a bug, but rather configuration missing in terraform.

Here's perhaps a useful example @jowparks on how to set everything up through terraform so a resource server has "create:foo" permissions:

provider "auth0" {}

resource "auth0_client" "my_client" {
  name = "Example Application - Client Grant (Managed by Terraform)"
}

resource "auth0_resource_server" "my_resource_server" {
  name       = "Example Resource Server - Client Grant (Managed by Terraform)"
  identifier = "https://api.example.com/client-grant"

  scopes {
    value       = "create:foo"
    description = "Create foos"
  }
}

resource "auth0_client_grant" "my_client_grant" {
  client_id = auth0_client.my_client.id
  audience  = auth0_resource_server.my_resource_server.identifier
  scope     = ["create:foo"]
}

We'll be closing this down but feel free to reopen if needed.

from terraform-provider-auth0.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.