엔드포인트 연결 만들기를 위한 샘플 Terraform 템플릿

다음은 엔드포인트 첨부파일 생성을 위한 샘플 Terraform 템플릿입니다.

resource "google_integration_connectors_endpoint_attachment" "default" {
  name               = "test-endpoint-attachment"
  location           = "us-central1"
  description        = "tf created description"
  service_attachment = "projects/connectors-example/regions/us-central1/serviceAttachments/test"
  labels = {
    foo = "bar"
  }
}