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

Microsoft lists - Authenticate with service principal #365

Open
nbaju1 opened this issue Sep 26, 2024 · 0 comments
Open

Microsoft lists - Authenticate with service principal #365

nbaju1 opened this issue Sep 26, 2024 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@nbaju1
Copy link

nbaju1 commented Sep 26, 2024

Describe the bug
According to the docs, it should be possible to provide client ID and client secret as authentication credentials for the Microsoft lists connector. This does not seem to work as the connector in the UI still asks for user authorization to finish the setup of the connector.

To Reproduce

data "fivetran_group" "all_connectors" {
  id = "group"
}

resource "fivetran_connector" "microsoft_lists_connector" {
  group_id          = data.fivetran_group.all_connectors.id
  service           = "microsoft_lists"
  networking_method = "Directly"
  auth {
    client_id     = var.client_id
    client_secret = var.client_secret
  }
  config {
    site_name = "some-site"
  }
  destination_schema {
    name = "some_site"
  }
}

resource "fivetran_connector_schedule" "connector_schedule" {
  connector_id   = fivetran_connector.microsoft_lists_connector.id
  sync_frequency = "60"
}

Expected behavior
Connector using the provided client credentials to authenticate with Sharepoint.

Plugin version:
1.3.2

@nbaju1 nbaju1 added the bug Something isn't working label Sep 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants