Taylor Geery

Results 5 comments of Taylor Geery

I'm having this same issue with Federated prometheus running in GKE clusters. The main operator prometheus has restarted nearly 60 times since the middle of the night last night.

Also, with the release of static-accounts need to add way to read secrets from pathway ``` vault read gcp/static-account/{roleset}/token ``` For now I've used a workaround: ``` token_response = client.secrets.kv.v1.read_secret(...

@JKCai this worked for me: ```python key_response = client.secrets.kv.v1.read_secret( path=f'roleset/{gcp_roleset}/key', mount_point='gcp', ) ``` that looks the same, but there might be something wrong with your Policy permissions for `gcp/roleset`

I'm now experiencing this issue Provider Config ```hcl provider "consul" { address = local.consul_url datacenter = local.consul_datacenter token = data.kubernetes_secret.consul_bootstrap_acl_token.data["token"] } ``` Resources ```hcl data "kubernetes_secret" "consul_bootstrap_acl_token" { metadata {...

@manobi Since I'm creating Consul and Vault in the same repository, I imported the Consul bootstrap token into terraform and am passing that to the provider: ```hcl resource "random_uuid" "consul_bootstrap_acl_token"...