Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump example to RHEL8 since 7 is EoL #337

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/active-active-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This example for Terraform Enterprise creates a TFE installation with the follow
- Active/Active architecture
- External Services production type
- m5.xlarge virtual machine type
- RHEL 7.9
- RHEL 8.8
- A privately accessible TCP load balancer with TLS pass-through
- An ubuntu based mitm proxy server with TLS termination

Expand Down
2 changes: 1 addition & 1 deletion examples/active-active-proxy/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data "aws_ami" "rhel" {

filter {
name = "name"
values = ["RHEL-7.9_HVM-*-x86_64-*-Hourly2-GP2"]
values = ["RHEL-8.8.0_HVM-*-x86_64-*-Hourly2-GP2"]
}

filter {
Expand Down
2 changes: 1 addition & 1 deletion tests/active-active-rhel7-proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ following traits:

- Active/Active mode
- a small VM machine type (m5.xlarge)
- Red Hat 7.9 as the VM image
- Red Hat 8.8 as the VM image
- a publicly accessible HTTP load balancer with TLS termination
- a proxy server with TLS termination
- an access key for accessing S3
Expand Down
2 changes: 1 addition & 1 deletion tests/active-active-rhel7-proxy/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data "aws_ami" "rhel" {

filter {
name = "name"
values = ["RHEL-7.9_HVM-*-x86_64-*-Hourly2-GP2"]
values = ["RHEL-8.8.0_HVM-*-x86_64-*-Hourly2-GP2"]
Copy link
Contributor

@nikolasrieble nikolasrieble Jun 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚧 If we want to update the value, we should also reflect this change in the folder and test name, see tests/active-active-rhel7-proxy/data.tf

}

filter {
Expand Down
Loading