Skip to content

Latest commit

 

History

History
81 lines (56 loc) · 3.19 KB

serviceendpoint_gcp_terraform.html.markdown

File metadata and controls

81 lines (56 loc) · 3.19 KB
layout page_title description
azuredevops
AzureDevops: azuredevops_serviceendpoint_gcp_terraform
Manages a GCP for Terraform service endpoint within Azure DevOps organization.

azuredevops_serviceendpoint_gcp_terraform

Manages a GCP for Terraform service endpoint for Terraform within Azure DevOps. Using this service endpoint requires you to first install the Azure Terraform Extension for Azure DevOps from Microsoft DevLabs.

Example Usage

resource "azuredevops_project" "example" {
  name               = "Example Project"
  visibility         = "private"
  version_control    = "Git"
  work_item_template = "Agile"
  description        = "Managed by Terraform"
}

resource "azuredevops_serviceendpoint_gcp_terraform" "example" {
  project_id            = azuredevops_project.example.id
  token_uri             = "https://oauth2.example.com/token"
  client_email          = "gcp-sa-example@example.iam.gserviceaccount.com"
  private_key           = "0000000000000000000000000000000000000"
  service_endpoint_name = "Example GCP Terraform extension"
  gcp_project_id        = "Example GCP Project"
  description           = "Managed by Terraform"
}

Argument Reference

The following arguments are supported:

  • project_id - (Required) The ID of the project.

  • service_endpoint_name - (Required) The Service Endpoint name.

  • private_key - (Required) The client email field in the JSON key file for creating the JSON Web Token.

  • token_uri - (Required) The token uri field in the JSON key file for creating the JSON Web Token.

  • gcp_project_id - (Required) GCP project associated with the Service Connection.


  • client_email - (Optional) The client email field in the JSON key file for creating the JSON Web Token.

  • scope - (Optional) Scope to be provided.

  • description - (Optional) The Service Endpoint description. Defaults to Managed by Terraform.

Attributes Reference

The following attributes are exported:

  • id - The ID of the service endpoint.
  • project_id - The ID of the project.
  • service_endpoint_name - The Service Endpoint name.

Relevant Links

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • create - (Defaults to 2 minutes) Used when creating the GCP for Terraform Service Endpoint.
  • read - (Defaults to 1 minute) Used when retrieving the GCP for Terraform Service Endpoint.
  • update - (Defaults to 2 minutes) Used when updating the GCP for Terraform Service Endpoint.
  • delete - (Defaults to 2 minutes) Used when deleting the GCP for Terraform Service Endpoint.

Import

Azure DevOps GCP for Terraform Service Endpoint can be imported using projectID/serviceEndpointID or projectName/serviceEndpointID

 terraform import azuredevops_serviceendpoint_gcp_terraform.example 00000000-0000-0000-0000-000000000000/00000000-0000-0000-0000-000000000000