Skip to content

Commit

Permalink
Merge c045538 into backport/moduli-e2e-ui-minio/literally-gentle-kitten
Browse files Browse the repository at this point in the history
  • Loading branch information
hc-github-team-secure-boundary authored May 29, 2024
2 parents f365da8 + c045538 commit 4d47b5d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions enos/modules/test_e2e_ui/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,36 @@ variable "aws_host_set_ips" {
type = list(string)
default = [""]
}
variable "access_key_id" {
description = "Access Key Id for AWS IAM user used in dynamic host catalogs"
type = string
default = ""
}
variable "secret_access_key" {
description = "Secret Access Key for AWS IAM user used in dynamic host catalogs"
type = string
default = ""
}
variable "region" {
description = "AWS region where the resources will be created"
type = string
default = ""
}
variable "bucket_name" {
description = "Storage bucket name"
type = string
default = ""
}
variable "bucket_user_id" {
description = "User ID created in bucket"
type = string
default = ""
}
variable "bucket_endpoint_url" {
description = "Endpoint URL for the storage bucket"
type = string
default = ""
}
variable "ldap_address" {
description = "URL to LDAP server"
type = string
Expand Down Expand Up @@ -197,6 +227,12 @@ resource "enos_local_exec" "run_e2e_test" {
E2E_AWS_HOST_SET_IPS = local.aws_host_set_ips
E2E_AWS_REGION = var.aws_region
E2E_AWS_BUCKET_NAME = var.aws_bucket_name
E2E_BUCKET_NAME = var.bucket_name
E2E_BUCKET_ENDPOINT_URL = var.bucket_endpoint_url
E2E_BUCKET_USER_ID = var.bucket_user_id
E2E_BUCKET_ACCESS_KEY_ID = var.access_key_id
E2E_BUCKET_SECRET_ACCESS_KEY = var.secret_access_key
E2E_REGION = var.region
E2E_LDAP_ADDR = var.ldap_address
E2E_LDAP_DOMAIN_DN = var.ldap_domain_dn
E2E_LDAP_ADMIN_DN = var.ldap_admin_dn
Expand Down

0 comments on commit 4d47b5d

Please sign in to comment.