Loki with helm and storage to gcs

I have this error would you please someone help me check this

init compactor: failed to init delete store: googleapi: got HTTP response code 403 with body: <?xml version='1.0' encoding='UTF-8'?><Error><Code>UserProjectAccountProblem</Code><Message>The project to be billed is associated with a closed billing account.</Message><Details>The billing account for the owning project is disabled in state closed</Details></Error>
error initialising module: compactor
github.com/grafana/dskit/modules.(*Manager).initModule
  /src/loki/vendor/github.com/grafana/dskit/modules/modules.go:138
github.com/grafana/dskit/modules.(*Manager).InitModuleServices
  /src/loki/vendor/github.com/grafana/dskit/modules/modules.go:108
github.com/grafana/loki/v3/pkg/loki.(*Loki).Run
  /src/loki/pkg/loki/loki.go:531
main.main
  /src/loki/cmd/loki/main.go:129
runtime.main
  /usr/local/go/src/runtime/proc.go:283
runtime.goexit
  /usr/local/go/src/runtime/asm_amd64.s:1700
level=error ts=2025-06-06T17:21:51.832014487Z caller=log.go:223 msg="error running loki" err="init compactor: failed to init delete store: googleapi: got HTTP response code 403 with body: <?xml version='1.0' encoding='UTF-8'?><Error><Code>UserProjectAccountProblem</Code><Message>The project to be billed is associated with a closed billing account.</Message><Details>The billing account for the owning project is disabled in state closed</Details></Error>\nerror initialising module: compactor\ngithub.com/grafana/dskit/modules.(*Manager).initModule\n\t/src/loki/vendor/github.com/grafana/dskit/modules/modules.go:138\ngithub.com/grafana/dskit/modules.(*Manager).InitModuleServices\n\t/src/loki/vendor/github.com/grafana/dskit/modules/modules.go:108\ngithub.com/grafana/loki/v3/pkg/loki.(*Loki).Run\n\t/src/loki/pkg/loki/loki.go:531\nmain.main\n\t/src/loki/cmd/loki/main.go:129\nruntime.main\n\t/usr/local/go/src/runtime/proc.go:283\nruntime.goexit\n\t/usr/local/go/src/runtime/asm_amd64.s:1700"

and this is my config

serviceAccount:
  create: false
  name: loki-gsa

global:
  extraEnv:
    - name: GODEBUG
      value: "gcphttpreqtrace=1"


loki:
  auth_enabled: false

  commonConfig:
    path_prefix: /var/loki
    replication_factor: 1

  storage:
    type: gcs
    bucketNames:
      chunks: chunks
      ruler: ruler
      admin: admin
      delete_requests: deletes
    gcs:
      bucketName: my-bucket


  schemaConfig:
    configs:
      - from: "2023-01-01"
        store: boltdb-shipper
        object_store: gcs
        schema: v11
        index:
          prefix: index_
          period: 24h

  compactor:
    working_directory: /var/loki/compactor
    retention_enabled: true
    delete_request_store: gcs

  limits_config:
    retention_period: 2160h  # 90 days
    allow_structured_metadata: false

  table_manager:
    retention_deletes_enabled: true
    retention_period: 2160h

  ingester:
    chunk_idle_period: 30s
    max_chunk_age: 1m
    chunk_target_size: 1048576

  chunk_store_config:
    max_look_back_period: 720h

  server:
    http_listen_port: 3100
    log_level: debug

please advice.

Pretty clear this is a problem with the GCP storage you are trying to use. Double check you are using the right one, and double check your permission.