steep-book-56052
02/03/2026, 12:49 PMsteep-book-56052
02/23/2026, 2:36 PMstocky-restaurant-98004
02/23/2026, 3:37 PMget:
email_section_example:
ref: "<op://Management/PagerDuty/Admin/email>"
You'd want to be able to specify a wildcard? If so, it's not clear how the mapping of names would work, given that you have to map a path in 1Password (Management/PagerDuty/Admin/email) to a single name of a secret (email_section_example).stocky-restaurant-98004
02/23/2026, 3:41 PMsteep-book-56052
02/24/2026, 8:13 AMget:
email_section_example:
ref: "<op://Management/PagerDuty/Admin/email>"
We would do something like this (note I just came up with this on the spot):
values:
aws_vault:
fn::op.vault:
reference: "<op://AWS/>"
const config = new pulumi.Config()
const awsVault = config.requireSecretObject('aws_vault')
const pulumiCredential = awsVault.apply(v => v['xxx']['credential'])
const awsUsername = awsVault.apply(v => v['yyy']['username'])
const awsPassword = awsVault.apply(v => v['zzz']['password'])steep-book-56052
02/24/2026, 8:14 AM