AzBuilder / terraform-provider-terrakube

Terraform provider for Terrakube
Apache License 2.0
4 stars 4 forks source link

Add support to use a vcs_id in a workspace_vcs resource #51

Closed alfespa17 closed 3 months ago

alfespa17 commented 3 months ago

Add support to use vcs_id in workspace_vcs resource like the following:

resource "terrakube_workspace_vcs" "vcs2" {
  organization_id = data.terrakube_organization.org.id
  name            = "vcs-workspace2"
  description     = "sample2"
  execution_mode  = "remote"
  repository      = "https://github.com/alfespa17/terraform-module-private.git"
  branch          = "main"
  iac_type        = "terraform"
  folder          = "/module"
  iac_version     = "1.5.7"
  vcs_id          = "c5f1b1f6-8e68-4c4d-b688-9fac563b611d"
}