Donny

Results 16 comments of Donny

Additionally, I share debug message with `TF_LOG=DEBUG` environment. ## terraform debug log ``` 2020/07/01 20:35:41 [WARN] Provider "registry.terraform.io/-/aws" produced an invalid plan for aws_autoscaling_group.this, but we are tolerating it because...

I have better idea to implement this issue. The RPC is highly coupled with klaytn node process. If RPC can be separately executed from klaytn, it could be configured without...

Let me share the example code like below. ### main.go ```golang package main import ( "fmt" "log" "os" "github.com/urfave/cli" "github.com/urfave/cli/altsrc" ) var ( ConfFlag = cli.StringFlag{ Name: "conf", } BootnodesFlag...

Where or how can we write document for this configuration way? I think that more tasks remain even though this PR is merged. And the tasks can be handled in...

@aidan-kwon @kjeom @kjhman21 I suggest the below function to automatically generate envVar string from flag name. Even in this PR, we can find typo in envVar. * We can not...

@mcassaniti I tried using `ansible-ssh-user` but it doesn't work. But when I removed default ssh user in job setting, it woks well. Thanks.

@mcassaniti I have a question of setting ssh username via ansible. I want to change `ansible-ssh-user` when I execute a job. I checked the following code. https://github.com/Batix/rundeck-ansible-plugin/blob/v2.1.3/src/main/java/com/batix/rundeck/core/AnsibleRunnerBuilder.java#L263 `getSshUser()` returns ssh...

@bramhaghosh I tried with `--key` flag. ``` $ http_proxy=localhost:8080 https_proxy=localhost:8081 curl --key ca.key https://ipinfo.io curl: (56) Proxy CONNECT aborted ``` ``` 2019/04/09 10:38:51 DEBUG: martian: accepted connection from [::1]:63363 2019/04/09...

@hqjang-pepper As I deeply look into the codes, I found this line to generate UTC-XXX files which is a kind of keystore file. * https://github.com/klaytn/klaytn/blob/dev/cmd/homi/setup/cmd.go#L302 * https://github.com/klaytn/klaytn/blob/dev/accounts/keystore/keystore.go#L543 * https://github.com/klaytn/klaytn/blob/dev/accounts/keystore/keystore_passphrase.go#L107 *...

@hqjang-pepper I created a PR. Please review my code overthere.