You must be logged in to view saved presets
Creates a development environment in AWS CodeCatalyst with specified IDE, storage, and repository settings.
resource "aws_codecatalyst_dev_environment" "test" {
ides {
name = "PyCharm"
runtime = "public.ecr.aws/jetbrains/py"
}
inactivity_timeout_minutes = 40
instance_type = "dev.standard1.small"
persistent_storage {
size = 16
}
project_name = "myproject"
repositories {
branch_name = "main"
repository_name = "terraform-provider-aws"
}
space_name = "myspace"
}