admin管理员组文章数量:1304955
I am trying to deploy a Fivetran google_sheet connector using Terraform.
I have the following resource :
data "fivetran_destination" "s3_destination" {
id = "my_id"
}
resource "fivetran_connector" "google_sheets" {
group_id = data.fivetran_destination.s3_destination.group_id
service = "google_sheets"
destination_schema {
name = "my_data"
table = "my_table"
}
config {
sheet_id = "my_id"
}
}
resource "fivetran_connector_schedule" "google_sheets_schedule" {
connector_id = fivetran_connector.google_sheets.id
sync_frequency = "1440" # Once every 24 hours
paused = false
}
However the created connection is created in state incomplete
, and I need to manually grant access to the connection :
Is it possible to have it working without any manual interaction ? If so, how ?
版权声明:本文标题:google sheets - Deploy google_sheet fivetran connector with terraform without manual action - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741777269a2397099.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论