Open
Description
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.
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
}