Hi coders, is it possible to select the amount of resources in your dev env?
I have a repo where I do ML stuff. In this repo my workflow involves writing code into a python lib and accessing that code from notebooks usually.
It would be super useful if I could select my machine type for the dev env. For example I would like to use
m6g.large
for when I'm developing scripts but then use r6g.4xlarge
when I'd like to run the code for real.
(This would be for an enterprise plan if that's relevant)2 Replies
Yes you can! See: https://github.com/coder/coder/blob/main/examples/templates/aws-linux/main.tf#L39-L53
GitHub
coder/main.tf at main · coder/coder
Remote development environments on your infrastructure provisioned with Terraform - coder/main.tf at main · coder/coder
Thank you very much!