mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-06 19:31:09 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
30 lines
624 B
HCL
30 lines
624 B
HCL
// Copyright IBM Corp. 2016, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
provider "aws" "default" {
|
|
region = var.aws_region
|
|
}
|
|
|
|
// This default SSH user is used in RHEL, Amazon Linux, SUSE, and Leap distros
|
|
provider "enos" "ec2_user" {
|
|
transport = {
|
|
ssh = {
|
|
user = "ec2-user"
|
|
private_key_path = abspath(var.aws_ssh_private_key_path)
|
|
}
|
|
}
|
|
}
|
|
|
|
// This default SSH user is used in the Ubuntu distro
|
|
provider "enos" "ubuntu" {
|
|
transport = {
|
|
ssh = {
|
|
user = "ubuntu"
|
|
private_key_path = abspath(var.aws_ssh_private_key_path)
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "hcp" "default" {
|
|
}
|