Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resource policy attachment #12812

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
15 changes: 15 additions & 0 deletions .ci/containers/build-environment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Stage 1: Building Go dependencies
FROM golang:1.23-bullseye AS builder

# Set working directory
Expand All @@ -10,6 +11,11 @@ ADD "https://raw.githubusercontent.com/GoogleCloudPlatform/magic-modules/main/tp
# Install the go dependencies
RUN go mod download

# Stage 2: Creating the final imag
FROM ruby:3.1-bullseye

# golang
COPY --from=golang:1.23-bullseye /usr/local/go /usr/local/go
ENV GOPATH /go
ENV PATH /usr/local/go/bin:$PATH
ENV PATH $GOPATH/bin:$PATH
Expand All @@ -32,3 +38,12 @@ RUN git config --global user.email "magic-modules@google.com"

RUN go install golang.org/x/tools/cmd/goimports@d088b475e3360caabc032aaee1dc66351d4e729a
RUN go install github.com/github/hub@v2.11.2+incompatible

ADD "https://raw.githubusercontent.com/GoogleCloudPlatform/magic-modules/refs/heads/legacy-ruby/mmv1/Gemfile" Gemfile
ADD "https://raw.githubusercontent.com/GoogleCloudPlatform/magic-modules/refs/heads/legacy-ruby/mmv1/Gemfile.lock" Gemfile.lock
RUN bundle install
RUN rm Gemfile Gemfile.lock

# Copy Go dependencies from builder stage
COPY --from=builder /go/pkg /go/pkg

19 changes: 0 additions & 19 deletions .ci/gcb-test-failure-ticket.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions .ci/infra/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ module "project-services" {
"logging.googleapis.com",
"looker.googleapis.com",
"managedidentities.googleapis.com",
"managedkafka.googleapis.com",
"memcache.googleapis.com",
"memorystore.googleapis.com",
"metastore.googleapis.com",
Expand All @@ -317,7 +316,6 @@ module "project-services" {
"osconfig.googleapis.com",
"oslogin.googleapis.com",
"parallelstore.googleapis.com",
"parametermanager.googleapis.com",
"privateca.googleapis.com",
"privilegedaccessmanager.googleapis.com",
"pubsub.googleapis.com",
Expand Down Expand Up @@ -469,13 +467,6 @@ resource "google_project_iam_member" "compute_agent_encrypter_decrypter" {
member = "serviceAccount:service-${google_project.proj.number}@compute-system.iam.gserviceaccount.com"
}

# TestAccColabRuntime_colabRuntimeBasicExample
# TestAccColabRuntime_colabRuntimeFullExample
resource "google_project_iam_member" "colab_admin_permissions" {
project = google_project.proj.project_id
role = "roles/aiplatform.colabEnterpriseAdmin"
member = "user:gterraformtestuser@gmail.com"
}

data "google_organization" "org2" {
organization = var.org2_id
Expand Down
58 changes: 0 additions & 58 deletions .ci/magician/cloudstorage/bucket.go

This file was deleted.

23 changes: 0 additions & 23 deletions .ci/magician/cloudstorage/init.go

This file was deleted.

228 changes: 0 additions & 228 deletions .ci/magician/cmd/collect_nightly_test_status.go

This file was deleted.

Loading