You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ These are the currently implemented sources and their associated template keys
22
22
|-|-|-|-|
23
23
|[AWS EC2 Instance Tags](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html)|`awsec2tag`|`aws`| Load the value of AWS EC2 Instance Tags by their key |
24
24
|[AWS EC2 Metadata Service](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html)|`awsec2metadata`|`aws`| Load a value from the AWS EC2 Metadata Service by it's path |
25
-
|[AWS EC2 Tag](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html)|`awsec2tag`|`aws`| Load a value from an AWS EC2 Tag by it's key|
25
+
|[AWS SSM Parameter](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html)|`awsssm`|`aws`| Load a value from the AWS SSM Parameter Store by it's name. **LIMITATION** when running on an EC2 instance, the parameter must be in the same region as the instance|
26
26
| Environment Variables |`env`|`-`| Load the value of an environment variable |
Copy file name to clipboardExpand all lines: src/lib.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@
15
15
//! |-|-|-|-|
16
16
//! | [AWS EC2 Instance Tags](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) | `awsec2tag` | `aws` | Load the value of AWS EC2 Instance Tags by their key |
17
17
//! | [AWS EC2 Metadata Service](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html) | `awsec2metadata` | `aws` | Load a value from the AWS EC2 Metadata Service by it's path |
18
-
//! | [AWS SSM Parameter](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html) | `awsssm` | `aws` | Load a value from the AWS SSM Parameter Store by it's name. **LIMITATION** the parameter must be in the same region that the EC2 instance is running in |
18
+
//! | [AWS SSM Parameter](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html) | `awsssm` | `aws` | Load a value from the AWS SSM Parameter Store by it's name. **LIMITATION** when running on an EC2 instance, the parameter must be in the same region as the instance |
19
19
//! | Environment Variables | `env` | `-` | Load the value of an environment variable |
0 commit comments