File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
deployment/modules/gcp/secretmanager Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ terraform {
9
9
10
10
# Secret Manager
11
11
12
+ resource "google_project_service" "secretmanager_googleapis_com" {
13
+ service = " secretmanager.googleapis.com"
14
+ disable_on_destroy = false
15
+ }
16
+
12
17
# ECDSA key with P256 elliptic curve. Do NOT use this in production environment.
13
18
#
14
19
# Security Notice
@@ -17,11 +22,6 @@ terraform {
17
22
# recommended.
18
23
#
19
24
# See https://registry.terraform.io/providers/hashicorp/tls/latest/docs/resources/private_key.
20
- resource "google_project_service" "secretmanager_googleapis_com" {
21
- service = " secretmanager.googleapis.com"
22
- disable_on_destroy = false
23
- }
24
-
25
25
resource "tls_private_key" "sctfe_ecdsa_p256" {
26
26
algorithm = " ECDSA"
27
27
ecdsa_curve = " P256"
You can’t perform that action at this time.
0 commit comments