Skip to content

Commit

Permalink
Merge pull request #459 from CheckPointSW/cloudguard-integrations-clo…
Browse files Browse the repository at this point in the history
…udguardiaas-3ab591078ab3c68325f0583776a28bcfd3966cac

Add support for m7a, r7a, c7i, c7i-flex instance types for AWS Terraform templates
  • Loading branch information
chkp-noamcoh authored Dec 18, 2024
2 parents 41abeb8 + f62ab97 commit 8724be7
Showing 1 changed file with 97 additions and 3 deletions.
100 changes: 97 additions & 3 deletions terraform/aws/modules/common/instance_type/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,38 @@ locals {
"m6a.16xlarge",
"m6a.24xlarge",
"m6a.32xlarge",
"m6a.48xlarge"
"m6a.48xlarge",
"r7a.xlarge",
"r7a.2xlarge",
"r7a.4xlarge",
"r7a.8xlarge",
"r7a.12xlarge",
"r7a.16xlarge",
"r7a.24xlarge",
"r7a.32xlarge",
"r7a.48xlarge",
"c7i-flex.xlarg",
"c7i-flex.2xlarge",
"c7i-flex.4xlarge",
"c7i-flex.8xlarge",
"m7a.xlarge",
"m7a.2xlarge",
"m7a.4xlarge",
"m7a.8xlarge",
"m7a.12xlarge",
"m7a.16xlarge",
"m7a.24xlarge",
"m7a.32xlarge",
"m7a.48xlarge",
"c7i.xlarge",
"c7i.2xlarge",
"c7i.4xlarge",
"c7i.8xlarge",
"c7i.12xlarge",
"c7i.16xlarge",
"c7i.24xlarge",
"c7i.32xlarge",
"c7i.48xlarge"
]
mgmt_types = [
"c5.large",
Expand Down Expand Up @@ -219,7 +250,38 @@ locals {
"m6a.16xlarge",
"m6a.24xlarge",
"m6a.32xlarge",
"m6a.48xlarge"
"m6a.48xlarge",
"r7a.xlarge",
"r7a.2xlarge",
"r7a.4xlarge",
"r7a.8xlarge",
"r7a.12xlarge",
"r7a.16xlarge",
"r7a.24xlarge",
"r7a.32xlarge",
"r7a.48xlarge",
"c7i-flex.xlarg",
"c7i-flex.2xlarge",
"c7i-flex.4xlarge",
"c7i-flex.8xlarge",
"m7a.xlarge",
"m7a.2xlarge",
"m7a.4xlarge",
"m7a.8xlarge",
"m7a.12xlarge",
"m7a.16xlarge",
"m7a.24xlarge",
"m7a.32xlarge",
"m7a.48xlarge",
"c7i.xlarge",
"c7i.2xlarge",
"c7i.4xlarge",
"c7i.8xlarge",
"c7i.12xlarge",
"c7i.16xlarge",
"c7i.24xlarge",
"c7i.32xlarge",
"c7i.48xlarge"
]
mds_types = [
"c5.large",
Expand Down Expand Up @@ -329,7 +391,39 @@ locals {
"m6a.16xlarge",
"m6a.24xlarge",
"m6a.32xlarge",
"m6a.48xlarge"
"m6a.48xlarge",
"r7a.xlarge",
"r7a.2xlarge",
"r7a.4xlarge",
"r7a.8xlarge",
"r7a.12xlarge",
"r7a.16xlarge",
"r7a.24xlarge",
"r7a.32xlarge",
"r7a.48xlarge",
"c7i-flex.xlarg",
"c7i-flex.2xlarge",
"c7i-flex.4xlarge",
"c7i-flex.8xlarge",
"m7a.xlarge",
"m7a.2xlarge",
"m7a.4xlarge",
"m7a.8xlarge",
"m7a.12xlarge",
"m7a.16xlarge",
"m7a.24xlarge",
"m7a.32xlarge",
"m7a.48xlarge",
"c7i.xlarge",
"c7i.2xlarge",
"c7i.4xlarge",
"c7i.8xlarge",
"c7i.12xlarge",
"c7i.16xlarge",
"c7i.24xlarge",
"c7i.32xlarge",
"c7i.48xlarge"

]
server_types = [
"t3.nano",
Expand Down

0 comments on commit 8724be7

Please sign in to comment.