Oleg Tsymbal

Results 6 comments of Oleg Tsymbal

OS ``` ProductName: Mac OS X ProductVersion: 10.14.6 BuildVersion: 18G103 ``` vim ``` VIM - Vi IMproved 8.1 (2018 May 18, compiled Nov 6 2019 08:27:54) macOS version Included patches:...

Hi everyone , I've made a dirty workaround ```hcl locals { splited_yaml_map = { for file_path in fileset(path.module, "crds/${var.crd_version}/*.yaml") : file_path => yamlencode( { for root_key, root_values in yamldecode(file("${path.module}/${file_path}")) :...

```tf locals { splited_yaml_install = split("-*-", trim(replace(data.flux_install.main.content, "/---\n/", "-*-"), "-*-")) splited_yaml_sync = split("-*-", trim(replace(data.flux_sync.main.content, "/---\n/", "-*-"), "-*-")) } resource "kubectl_manifest" "install" { count = length(local.splited_yaml_install) yaml_body = local.splited_yaml_install[count.index] depends_on =...

@andytael and @starboi02 ```yaml aws: access_key_id: d844cd76659fe0d204f1213123asdasdsd bucketnames: logging-bucket endpoint: https://dasdjkjwi.compat.objectstorage.my-region-1.oraclecloud.com http_config: insecure_skip_verify: true insecure: true region: my-region-1 s3forcepathstyle: true secret_access_key: 8sacRn7Akasddasdio21233ksasaM8= ``` keep in mind that you have to...

Have the same issue , but what I noticed, that I have this error only when I specify log destination.

I rewrited keygen script because in modern systems ssh-keygen generated keys didn't work property with `golang.org/x/crypto/ssh` package. I will try make patch for this on this weekend if i will...