diff --git a/devops/gc/deploy/README.md b/devops/gc/deploy/README.md
index bc39a3fae1dce28bf1e177a3ebb15a47d3bd745a..b07995183b525b5f6e05d6d7410019f76d5f23c0 100644
--- a/devops/gc/deploy/README.md
+++ b/devops/gc/deploy/README.md
@@ -45,7 +45,6 @@ First you need to set variables in **values.yaml** file using any code editor. S
 **data.partitionHost** | Partition service host address | string | `http://partition` | yes
 **data.crsConverterHost** | CRS Converter service host address | string | `http://crs-conversion` | yes
 **data.legalHost** | Legal service host address | string | `http://legal` | yes
-**data.opaEnabled** | whether OPA is enabled | boolean | false | yes
 **data.opaEndpoint** | OPA host address | string | `http://opa` | yes
 **data.redisStorageHost** | The host for redis instance. If empty (by default), helm installs an internal redis instance | string | - | yes
 **data.redisStoragePort** | The port for redis instance | digit | 6379 | yes
diff --git a/devops/gc/deploy/templates/configmap.yaml b/devops/gc/deploy/templates/configmap.yaml
index d71bcc7fb229adb77419c54ec98bf1efd7fbae0d..49d2d3a26463c63e3719e5fde39123af515677f8 100644
--- a/devops/gc/deploy/templates/configmap.yaml
+++ b/devops/gc/deploy/templates/configmap.yaml
@@ -18,7 +18,6 @@ data:
   {{- else }}
   SPRING_PROFILES_ACTIVE: "gcp"
   {{- end }}
-  OPA_ENABLED: {{ .Values.data.opaEnabled | quote }}
   OPA_ENDPOINT: {{ .Values.data.opaEndpoint | quote }}
   {{- if .Values.data.redisStorageHost }}
   REDIS_GROUP_HOST: {{ .Values.data.redisStorageHost | quote }}
diff --git a/devops/gc/deploy/values.yaml b/devops/gc/deploy/values.yaml
index bd75173b390e241f9238cb4074c142172df91514..13d6ce97a69ab2fce75e342063c62aeacba5cc94 100644
--- a/devops/gc/deploy/values.yaml
+++ b/devops/gc/deploy/values.yaml
@@ -16,7 +16,6 @@ data:
   partitionHost: "http://partition"
   crsConverterHost: "http://crs-conversion"
   legalHost: "http://legal"
-  opaEnabled: false
   opaEndpoint: "http://opa"
   # deployments
   requestsCpu: "150m"