We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4680ee4 commit a20d630Copy full SHA for a20d630
manifests/osfamily/redhat.pp
@@ -24,11 +24,13 @@
24
'2-aarch64' => '2',
25
'2-x86_64' => '7',
26
/^(2017|2018)-/ => '6',
27
+ '2023-x86_64' => '8',
28
+ '2023-aarch64' => '8',
29
default => $major_version,
30
}
31
32
$platform_and_version = "${amz_el_version}" ? {
- /^(6|7)$/ => "el/${amz_el_version}",
33
+ /^(6|7|8)$/ => "el/${amz_el_version}",
34
default => "amazon/${amz_el_version}",
35
36
@@ -43,7 +45,7 @@
43
45
if $facts['os']['name'] == 'Amazon' {
44
46
# lint:ignore:only_variable_string
47
$pe_repo_dir = "${amz_el_version}" ? {
- /^(6|7)$/ => "el-${amz_el_version}-${facts['os']['architecture']}",
48
+ /^(6|7|8)$/ => "el-${amz_el_version}-${facts['os']['architecture']}",
49
default => $facts['platform_tag'],
50
51
# lint:endignore
0 commit comments