CLI Overview and Prequisites
The Cloudscript CLI helps you convert, plan, deploy, and manage your infrastructure efficiently. See the "Get Started" page to ensure your environment is properly set up.
Infrastructure as Code (IaC) Directory
File References
\\ .cloud file
iam "eks_cluster" {
name = "eks_cluster"
assume_role_policy = file("role.json")
resource_type = "aws_iam_role"
}
\\ role.json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "eks.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}Prerequisites
AWS Configuration
GCP Configuration
Directory Structure
Last updated