Skip to content

Commit 466776f

Browse files
update diagram
1 parent 5ef5e88 commit 466776f

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

ibm_catalog.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@
242242
"default_value": "standard",
243243
"description": "The pricing plan to use when provisioning a Secrets Manager instance. Possible values: `standard`, `trial`. You can create only one Trial instance of Secrets Manager per account. Before you can create a new Trial instance, you must delete the existing Trial instance and its reclamation. [Learn more](https://cloud.ibm.com/docs/secrets-manager?topic=secrets-manager-create-instance&interface=ui#upgrade-instance-standard)."
244244
},
245+
{
246+
"key": "service_endpoints"
247+
},
245248
{
246249
"key": "ibmcloud_cis_api_key"
247250
},

reference-architecture/deployable-architecture-sm-public-cert-engine.svg

Lines changed: 1 addition & 1 deletion
Loading

solutions/fully-configurable/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module "secrets_manager_public_cert_engine" {
4444
ca_config_name = "${local.prefix}${var.ca_config_name}"
4545
lets_encrypt_environment = var.lets_encrypt_environment
4646
acme_letsencrypt_private_key = var.acme_letsencrypt_private_key
47-
service_endpoints = "private"
47+
service_endpoints = var.service_endpoints
4848
skip_iam_authorization_policy = var.skip_iam_authorization_policy
4949
private_key_secrets_manager_instance_guid = local.existing_secrets_manager_guid
5050
private_key_secrets_manager_secret_id = local.secret_id

solutions/fully-configurable/variables.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ variable "prefix" {
4747
}
4848
}
4949

50+
variable "service_endpoints" {
51+
type = string
52+
description = "The service endpoint type to communicate with the provided secrets manager instance."
53+
default = "private"
54+
}
5055

5156
variable "ibmcloud_cis_api_key" {
5257
type = string

0 commit comments

Comments
 (0)