Last active
January 8, 2021 03:33
-
-
Save joycse06/74c0dabad0332c60eb581e1f7163b4dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
locals { | |
kafka_pki_prefix = "prefix" | |
kafka_broker_allowed_domains = ["broker.kafka.com"] | |
kafka_client_allowed_domains = ["client.kafka.com"] | |
} | |
module "root_a" { | |
source = "./common/kafka_pki" | |
path = "${local.kafka_pki_prefix}/root-a" | |
root_ca_common_name = "Root A" | |
vault_root_url = "${var.vault_addr}" | |
broker_allowed_domains = "${local.kafka_broker_allowed_domains}" | |
client_allowed_domains = "${local.kafka_client_allowed_domains}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment