mirror of https://github.com/pulumi/pulumi.git
10 lines
183 B
Python
10 lines
183 B
Python
|
import pulumi
|
||
|
|
||
|
config = pulumi.Config()
|
||
|
value = config.require("value")
|
||
|
tags = config.get_object("tags")
|
||
|
if tags is None:
|
||
|
tags = {
|
||
|
f"interpolated/{value}": "value",
|
||
|
}
|