Python Pulumi AWS SSM Parameter: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Python Pulumi") |
|||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Python_Pulumi#AWS|Python Pulumi]] | * [[Python_Pulumi#AWS|Python Pulumi]] | ||
=Overview= | |||
<syntaxhighlight lang='python'> | |||
from pulumi_aws import ssm | |||
parameter = ssm.Parameter("/test/a", type="String", value="Test"); | |||
</syntaxhighlight> |
Revision as of 21:44, 11 January 2022
Internal
Overview
from pulumi_aws import ssm
parameter = ssm.Parameter("/test/a", type="String", value="Test");