Skip to content

Commit 63ea952

Browse files
committed
feat: upgraded default Autonomous Linux to 8.8
disabled unnecessary repos Signed-off-by: Ali Mukadam <[email protected]>
1 parent 9b683d8 commit 63ea952

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

modules/bastion/cloudinit.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ data "cloudinit_config" "bastion" {
66
gzip = true
77
base64_encode = true
88

9+
part {
10+
content_type = "text/cloud-config"
11+
# https://cloudinit.readthedocs.io/en/latest/reference/examples.html#run-commands-on-first-boot
12+
content = <<-EOT
13+
runcmd:
14+
- dnf config-manager --disable ol8_addons --disable ol8_appstream
15+
EOT
16+
}
17+
918
part {
1019
content_type = "text/cloud-config"
1120
# https://cloudinit.readthedocs.io/en/latest/reference/modules.html#package-update-upgrade-install

variables-bastion.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ variable "bastion_image_os" {
6060
}
6161

6262
variable "bastion_image_os_version" {
63-
default = "8.7"
63+
default = "8.8"
6464
description = "Bastion image operating system version when bastion_image_type = 'platform'."
6565
type = string
6666
}

0 commit comments

Comments
 (0)