Skip to content
Snippets Groups Projects
Commit a120c23a authored by Ravi Tripathi's avatar Ravi Tripathi
Browse files

Merge branch 'feat-add-vars-for-cert-staging' into 'master'

Add var for getting certifcate in staging env

See merge request !18
parents fa470382 384a4a80
No related branches found
No related tags found
1 merge request!18Add var for getting certifcate in staging env
...@@ -42,7 +42,8 @@ build { ...@@ -42,7 +42,8 @@ build {
"lts_secret_key=${var.lts_secret_key}", "lts_secret_key=${var.lts_secret_key}",
"s3_endpoint=${var.s3_endpoint}", "s3_endpoint=${var.s3_endpoint}",
"s3_shibboleth_bucket_name=${var.s3_shibboleth_bucket_name}", "s3_shibboleth_bucket_name=${var.s3_shibboleth_bucket_name}",
"s3_shibboleth_object_name=${var.s3_shibboleth_object_name}" "s3_shibboleth_object_name=${var.s3_shibboleth_object_name}",
"s3_cert_object_name=${var.s3_cert_object_name}"
] ]
inline = [ inline = [
"sudo -E echo 's3_endpoint: $s3_endpoint'", "sudo -E echo 's3_endpoint: $s3_endpoint'",
......
...@@ -69,4 +69,9 @@ variable "s3_shibboleth_object_name" { ...@@ -69,4 +69,9 @@ variable "s3_shibboleth_object_name" {
type = string type = string
default = "" default = ""
description = "s3 shibboleth object name" description = "s3 shibboleth object name"
}
variable "s3_cert_object_name" {
type = string
default = ""
description = "s3 certificate object name"
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment