This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Conversation
* AWS initil implementation * more work on getting aws working from scratch * refactor awsSpecification commands * More work on gettting AWS working * cluster create and machine create commands fixes * checks if clustering is enabled for the authenticated user * remove debug logs * Small nits from Coder Rabbit * cleanup
Contributor
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the ✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
jhaynie
approved these changes
Oct 22, 2025
| `echo '{ENCRYPTION_PRIVATE_KEY}' | base64 -d | openssl ec -inform DER -outform PEM > /tmp/agentuity-key.pem`, | ||
| `aws --region {AWS_REGION} secretsmanager create-secret --name '{AWS_SECRET_NAME}' --description 'Agentuity Cluster Private Key' --secret-string file:///tmp/agentuity-key.pem`, | ||
| `rm -f /tmp/agentuity-key.pem`, | ||
| `aws --region {AWS_REGION} secretsmanager create-secret --name '{AWS_SECRET_NAME}' --description 'Agentuity Cluster Private Key' --secret-string {ENCRYPTION_PRIVATE_KEY}`, |
Member
There was a problem hiding this comment.
its the org private key not cluster
|
|
||
| // Always use the cluster region first, fall back to detected/default only if not specified | ||
| region = cluster.Region | ||
| fmt.Println("Region: ", region) |
|
|
||
| func azure_checkSSHKey() string { | ||
| cmd := []string{ | ||
| `if [ ! -f ~/.ssh/id_rsa.pub ]; then echo "SSH key not found, generating new key pair..."; ssh-keygen -t rsa -b 4096 -f ~/.ssh/id_rsa -N "" -q; echo "SSH key generated at ~/.ssh/id_rsa"; else echo "SSH key found at ~/.ssh/id_rsa.pub"; fi`, |
Member
There was a problem hiding this comment.
need to support newer edrsa keys probably too
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.