Skip to content

Commit

Permalink
Merge pull request #603 from lorengordon/fix/el7-disk-layout
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon authored May 10, 2023
2 parents b54ac21 + e4816e0 commit 3028569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ No resources.
| <a name="input_amigen7_repo_sources"></a> [amigen7\_repo\_sources](#input\_amigen7\_repo\_sources) | List of yum package refs (names or urls to .rpm files) that install yum repo definitions in EL7 builders and images | `list(string)` | <pre>[<br> "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm",<br> "https://spel-packages.cloudarmor.io/spel-packages/repo/spel-release-latest-7.noarch.rpm"<br>]</pre> | no |
| <a name="input_amigen7_source_branch"></a> [amigen7\_source\_branch](#input\_amigen7\_source\_branch) | Branch that will be checked out when cloning AMIgen7 | `string` | `"master"` | no |
| <a name="input_amigen7_source_url"></a> [amigen7\_source\_url](#input\_amigen7\_source\_url) | URL that will be used to clone AMIgen7 | `string` | `"https://github.com/plus3it/AMIgen7.git"` | no |
| <a name="input_amigen7_storage_layout"></a> [amigen7\_storage\_layout](#input\_amigen7\_storage\_layout) | List of colon-separated tuples (mount:name:size) that describe the desired partitions for LVM-partitioned disks on EL7 images | `list(string)` | <pre>[<br> "/:rootVol:4",<br> "swap:swapVol:2",<br> "/home:homeVol:1",<br> "/var:varVol:2",<br> "/var/log:logVol:2",<br> "/var/log/audit:auditVol:100%FREE"<br>]</pre> | no |
| <a name="input_amigen7_storage_layout"></a> [amigen7\_storage\_layout](#input\_amigen7\_storage\_layout) | List of colon-separated tuples (mount:name:size) that describe the desired partitions for LVM-partitioned disks on EL7 images | `list(string)` | <pre>[<br> "/:rootVol:5",<br> "swap:swapVol:2",<br> "/home:homeVol:1",<br> "/var:varVol:2",<br> "/var/log:logVol:2",<br> "/var/log/audit:auditVol:100%FREE"<br>]</pre> | no |
| <a name="input_amigen8_extra_rpms"></a> [amigen8\_extra\_rpms](#input\_amigen8\_extra\_rpms) | List of package specs (rpm names or URLs to .rpm files) to install to the EL8 builders and images | `list(string)` | <pre>[<br> "python39",<br> "python39-pip",<br> "python39-setuptools",<br> "crypto-policies-scripts",<br> "spel-release",<br> "ec2-hibinit-agent",<br> "ec2-net-utils",<br> "https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm"<br>]</pre> | no |
| <a name="input_amigen8_filesystem_label"></a> [amigen8\_filesystem\_label](#input\_amigen8\_filesystem\_label) | Label for the root filesystem when creating bare partitions for EL8 images | `string` | `""` | no |
| <a name="input_amigen8_package_groups"></a> [amigen8\_package\_groups](#input\_amigen8\_package\_groups) | List of yum repo groups to install into EL8 images | `list(string)` | <pre>[<br> "core"<br>]</pre> | no |
Expand Down
2 changes: 1 addition & 1 deletion spel/minimal-linux.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ variable "amigen7_storage_layout" {
description = "List of colon-separated tuples (mount:name:size) that describe the desired partitions for LVM-partitioned disks on EL7 images"
type = list(string)
default = [
"/:rootVol:4",
"/:rootVol:5",
"swap:swapVol:2",
"/home:homeVol:1",
"/var:varVol:2",
Expand Down

0 comments on commit 3028569

Please sign in to comment.