You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `aws_vpc_create` | Boolean | Define if a VPC should be created |
155
+
| `aws_vpc_name` | String | Define a name for the VPC. Defaults to `VPC for ${aws_resource_identifier}`. |
156
+
| `aws_vpc_cidr_block` | String | Define Base CIDR block which is divided into subnet CIDR blocks. Defaults to `10.0.0.0/16`. |
157
+
| `aws_vpc_public_subnets` | String | Comma separated list of public subnets. Defaults to `10.10.110.0/24`|
158
+
| `aws_vpc_private_subnets` | String | Comma separated list of private subnets. If no input, no private subnet will be created. Defaults to `<none>`. |
159
+
| `aws_vpc_availability_zones` | String | Comma separated list of availability zones. Defaults to `aws_default_region+<random>` value. If a list is defined, the first zone will be the one used for the EC2 instance. |
| `aws_efs_create` | Boolean | Toggle to indicate whether to create and EFS and mount it to the ec2 as a part of the provisioning. Note: The EFS will be managed by the stack and will be destroyed along with the stack |
181
196
| `aws_efs_create_ha` | Boolean | Toggle to indicate whether the EFS resource should be highly available (target mounts in all available zones within region) |
182
-
| `aws_efs_mount_id` | String | ID of existing EFS. |
183
-
| `aws_efs_mount_security_group_id` | String | ID of the primary security group used by the existing EFS. |
197
+
| `aws_efs_fs_id` | String | ID of existing EFS. |
198
+
| `aws_efs_vpc_id` | String | ID of the VPC for the EFS mount target. If aws_efs_create_ha is set to true, will create one mount target per subnet available in the VPC. If not, will create one in an automated selected region. |
199
+
| `aws_efs_subnet_ids` | String | ID (or ID's) of the subnet for the EFS mount target. (Comma separated string.) |
184
200
| `aws_efs_security_group_name` | String | The name of the EFS security group. Defaults to `SG for ${aws_resource_identifier} - EFS`. |
185
201
| `aws_efs_create_replica` | Boolean | Toggle to indiciate whether a read-only replica should be created for the EFS primary file system |
202
+
| `aws_efs_replication_destination` | String | AWS Region to target for replication. |
186
203
| `aws_efs_enable_backup_policy` | Boolean | Toggle to indiciate whether the EFS should have a backup policy |
187
-
| `aws_efs_zone_mapping` | JSON | Zone Mapping in the form of `{\"<availabillity zone>\":{\"subnet_id\":\"subnet-abc123\", \"security_groups\":\[\"sg-abc123\"\]} }` |
188
204
| `aws_efs_transition_to_inactive` | String | Indicates how long it takes to transition files to the IA storage class. |
189
-
| `aws_efs_replication_destination` | String | AWS Region to target for replication. |
190
205
| `aws_efs_mount_target` | String | Directory path in efs to mount directory to. Default is `/`. |
191
206
| `aws_efs_ec2_mount_point` | String | The aws_efs_ec2_mount_point input represents the folder path within the EC2 instance to the data directory. Default is `/user/ubuntu/<application_repo>/data`. Additionally this value is loaded into the docker-compose `.env` file as `HOST_DIR`. |
192
207
<hr/>
@@ -224,6 +239,35 @@ The following inputs can be used as `step.with` keys
224
239
| `docker_efs_mount_target` | String | Directory path within docker env to mount directory to. Default is `/data`|
| `aws_eks_create` | Boolean | Define if an EKS cluster should be created |
247
+
| `aws_eks_region` | String | Define the region where EKS cluster should be created. Defaults to `us-east-1`. |
248
+
| `aws_eks_security_group_name_master` | String | Define the security group name master. Defaults to `SG for ${GITHUB_ORG_NAME}-${GITHUB_REPO_NAME}-${GITHUB_BRANCH_NAME} - ${aws_eks_environment} - EKS Master`. |
249
+
| `aws_eks_security_group_name_worker` | String | Define the security group name worker. Defaults to `SG for ${GITHUB_ORG_NAME}-${GITHUB_REPO_NAME}-${GITHUB_BRANCH_NAME} - ${aws_eks_environment} - EKS Worker`. |
250
+
| `aws_eks_environment` | String | Specify the eks environment name. Defaults to `env` |
251
+
| `aws_eks_stackname` | String | Specify the eks stack name for your environment. Defaults to `eks-stack`. |
252
+
| `aws_eks_cidr_block` | String | Define Base CIDR block which is divided into subnet CIDR blocks. Defaults to `10.0.0.0/16`. |
253
+
| `aws_eks_workstation_cidr` | String | Comma separated list of remote public CIDRs blocks to add it to Worker nodes security groups. |
254
+
| `aws_eks_availability_zones` | String | Comma separated list of availability zones. Defaults to `us-east-1a,us-east-1b`. |
255
+
| `aws_eks_private_subnets` | String | Comma separated list of private subnets. Defaults to `10.0.1.0/24,10.0.2.0/24`. |
256
+
| `aws_eks_public_subnets` | String | Comma separated list of public subnets. Defaults to `10.0.101.0/24,10.0.102.0/24`|
257
+
| `aws_eks_cluster_name` | String | Specify the k8s cluster name. Defaults to `${GITHUB_ORG_NAME}-${GITHUB_REPO_NAME}-${GITHUB_BRANCH_NAME}-cluster` |
258
+
| `aws_eks_cluster_log_types` | String | Comma separated list of cluster log type. See [this AWS doc](https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html). Defaults to `none`. |
259
+
| `aws_eks_cluster_version` | String | Specify the k8s cluster version. Defaults to `1.27` |
260
+
| `aws_eks_instance_type` | String | Define the EC2 instance type. See [this list](https://aws.amazon.com/ec2/instance-types/) for reference. Defaults to `t3a.medium`. |
261
+
| `aws_eks_instance_ami_id` | String | AWS AMI ID. Will default to the latest Amazon EKS Node image for the cluster version. |
262
+
| `aws_eks_instance_user_data_file` | String | Relative path in the repo for a user provided script to be executed with the EC2 Instance creation. See note. |
263
+
| `aws_eks_ec2_key_pair` | String | Enter an existing ec2 key pair name for worker nodes. If none, will create one. |
264
+
| `aws_eks_store_keypair_sm` | Boolean | If true, will store the newly created keys in Secret Manager. |
265
+
| `aws_eks_desired_capacity` | String | Enter the desired capacity for the worker nodes. Defaults to `2`. |
266
+
| `aws_eks_max_size` | String | Enter the max_size for the worker nodes. Defaults to `4`. |
267
+
| `aws_eks_min_size` | String | Enter the min_size for the worker nodes. Defaults to `2`. |
268
+
| `input_helm_charts` | String | Relative path to the folder from project containing Helm charts to be installed. Could be uncompressed or compressed (.tgz) files. |
description: 'Specify a Subnet to be used with the instance. If none provided, will pick one.'
193
+
required: false
194
+
169
195
# AWS Route53 Domains abd Certificates
170
196
aws_r53_enable:
171
197
description: 'Enables the usage of Route53 to manage DNS records.'
@@ -221,30 +247,29 @@ inputs:
221
247
aws_efs_create_ha:
222
248
description: 'Toggle to indicate whether the EFS resource should be highly available (target mounts in all available zones within region)'
223
249
required: false
224
-
aws_efs_mount_id:
250
+
aws_efs_fs_id:
225
251
description: 'ID of existing EFS'
226
252
required: false
227
-
aws_efs_mount_security_group_id:
228
-
description: 'ID of the primary security group used by the existing EFS'
253
+
aws_efs_vpc_id:
254
+
description: 'ID of the VPC for the EFS mount target. If aws_efs_create_ha is set to true, will create one mount target per subnet available in the VPC. If not, will pick one.'
229
255
required: false
256
+
aws_efs_subnet_ids:
257
+
description: 'ID or IDs of the subnet for the EFS mount target.'
230
258
aws_efs_security_group_name:
231
259
description: 'The name of the EFS security group'
232
260
required: false
233
261
aws_efs_create_replica:
234
262
description: 'Toggle to indiciate whether a read-only replica should be created for the EFS primary file system'
235
263
required: false
264
+
aws_efs_replication_destination:
265
+
description: 'AWS Region to target for replication'
266
+
required: false
236
267
aws_efs_enable_backup_policy:
237
268
description: 'Toggle to indiciate whether the EFS should have a backup policy, default is false'
238
269
required: false
239
-
aws_efs_zone_mapping:
240
-
description: 'Information on Zone Mapping can be found in the [README.md](README.md#efs-zone-mapping)'
241
-
required: false
242
270
aws_efs_transition_to_inactive:
243
271
description: 'Indicates how long it takes to transition files to the IA storage class.'
244
272
required: false
245
-
aws_efs_replication_destination:
246
-
description: 'AWS Region to target for replication'
247
-
required: false
248
273
aws_efs_mount_target:
249
274
description: 'Directory path in the EFS volume to mount directory to. Default is /.'
250
275
required: false
@@ -391,6 +416,9 @@ outputs:
391
416
vm_url:
392
417
description: "The URL of the generated app"
393
418
value: ${{ steps.deploy.outputs.vm_url }}
419
+
ec2_url:
420
+
description: "The URL of the generated ec2 instance"
0 commit comments