Alfredo España

Results 175 comments of Alfredo España

API support was added to handle a custom callback, UI support is missing

Hello @castaway2000, we have some small samples in the following link using some dex connectors. https://github.com/AzBuilder/terrakube-helm-chart/tree/main/examples There are a lot of different ways to setup DEX connectors depending on your...

> This could be also security enhancement where jobs (workflow) are executed within independent dynamically created container and not interfere with other jobs (workflow). This pattern is quite popular ex...

> If you still have that change somewhere i could try to test and help with kubernetes part if you want. I will search the error information, I should have...

Hello @kspradheep For your first question: You wont be able to use "prefix-based routing" there is one restriction when you are using the terraform CLI. Terraform CLI require the "/.well-known/terraform.json"...

For your second question. This class has the POSTGRESQL connection, may be it will require some additional parameter. https://github.com/AzBuilder/terrakube/blob/main/api/src/main/java/org/terrakube/api/plugin/datasource/DataSourceAutoConfiguration.java#L37 These are parameters that we use to connect to the database...

For you third question. To connect to the S3 storage we are using the following code: https://github.com/AzBuilder/terrakube/blob/main/api/src/main/java/org/terrakube/api/plugin/storage/configuration/StorageTypeAutoConfiguration.java#L63 https://github.com/AzBuilder/terrakube/blob/main/registry/src/main/java/org/terrakube/registry/plugin/storage/configuration/StorageAutoConfiguration.java#L68 https://github.com/AzBuilder/terrakube/blob/main/executor/src/main/java/org/terrakube/executor/plugin/tfoutput/configuration/TerraformOutputAutoConfiguration.java#L65 https://github.com/AzBuilder/terrakube/blob/main/executor/src/main/java/org/terrakube/executor/plugin/tfstate/configuration/TerraformStateAutoConfiguration.java#L74 I guess those classes could require some changes to use...

Hello @kspradheep That could be another parameter but I am not sure if that will be the only require change so it can connect to your Zalandro cluster. do you...

SSL parameter was added in the following PR and will require the environment variable DatasourceSslMode to change the default value that is "disable" https://github.com/AzBuilder/terrakube/pull/459