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
It would be great to have this with terraform, so it would simplify a lot our infra provisioning.
e.g.
resource "netlify_deploy_key" "key" {
# if any custom param? but I guess the create doesn't need any
}
# easy integrate my gitlab
resource "gitlab_deploy_key" "netlify_key" {
project = "my-gitlab-project"
title = "Netlify deployment key"
key = netlify_deploy_key.key.public_key # allows the just created key to access my-gitlab-project
}
The text was updated successfully, but these errors were encountered:
As in the rest resources https://open-api.netlify.com/#tag/deployKey
It would be great to have this with terraform, so it would simplify a lot our infra provisioning.
e.g.
The text was updated successfully, but these errors were encountered: