mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-24 22:16:48 +01:00
15 lines
359 B
Terraform
15 lines
359 B
Terraform
|
resource "google_kms_key_ring" "tor-key-ring" {
|
||
|
project = "${var.project}"
|
||
|
name = "${var.name}-keyring"
|
||
|
location = "${var.region}"
|
||
|
|
||
|
count = "${local.create_misc}"
|
||
|
}
|
||
|
|
||
|
resource "google_kms_crypto_key" "tor-crypto-key" {
|
||
|
name = "${var.name}-crypto-key"
|
||
|
key_ring = "${google_kms_key_ring.tor-key-ring.id}"
|
||
|
|
||
|
count = "${local.create_misc}"
|
||
|
}
|