26 lines
591 B
Text
26 lines
591 B
Text
|
|
# AWS Provider Version Configuration
|
||
|
|
# Migrated from: provisioning/extensions/providers/aws/kcl/version.k
|
||
|
|
|
||
|
|
{
|
||
|
|
name = "aws",
|
||
|
|
|
||
|
|
version = {
|
||
|
|
current = "2.32.11",
|
||
|
|
source = "https://github.com/aws/aws-cli/releases",
|
||
|
|
tags = "https://github.com/aws/aws-cli/tags",
|
||
|
|
site = "https://aws.amazon.com/cli/",
|
||
|
|
check_latest = true,
|
||
|
|
grace_period = 86400,
|
||
|
|
},
|
||
|
|
|
||
|
|
dependencies = [],
|
||
|
|
|
||
|
|
# Detection configuration to check if AWS CLI is installed
|
||
|
|
detector = {
|
||
|
|
method = "command",
|
||
|
|
command = "aws --version",
|
||
|
|
pattern = "aws-cli/([\\d.]+)",
|
||
|
|
capture = "capture0",
|
||
|
|
},
|
||
|
|
}
|