![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
pass in a encrypted file and kms key id, the package will decrypt the data, and upload the contents to aws ssm.
Command line tool that will encrypt ssm secrets locally via AWS KMS and uploads encrypted data to ssm.
{
"secrets": [
{
"Name": "/super/secret/parameter",
"Value": "42",
"Type": "SecureString",
"Overwrite": true
}
]
}
For parameter options see boto 3 put parameter docs
python -m ssmu -e -k {kms_id} -f path/to/file/{unencrypted_file.json} -s {stage} --o path/to/save
will output a file named secret.{stage}
python -m ssmu -u -k {kms_id} -f path/to/file/secret.stage -s stage
Note: Windows and linux \ vs /
Note: Tags are not required, but if you do include them, then the key values are required
{
"Name": "String [REQUIRED]",
"Description": "String [NOT REQUIRED]",
"Value": "String [REQUIRED]",
"Type": "String'|'StringList'|'SecureString [REQUIRED]",
"KeyId": "String [NOT REQUIRED]",
"Overwrite": "BOOLEAN [NOT REQUIRED]",
"AllowedPattern": "String [NOT REQUIRED]",
"Tags": [
{
"Key": "String [REQUIRED]",
"Value": "String [REQUIRED]"
}
],
"Tier": "'Standard'|'Advanced'|'Intelligent-Tiering' [NOT REQUIRED]",
"Policies": "String [NOT REQUIRED]",
"DataType": "String [NOT REQUIRED]"
}
{
"secrets": [
{
"Name": "/this/is/super/secret",
"Value": "shhhh",
"Type": "String"
}
]
}
{
"secrets": [
{
"Name": "/this/is/super/secret",
"Value": "shhhh",
"Type": "SecureString"
}
]
}
{
"secrets": [
{
"Name": "/this/is/super/secret",
"Value": "shhhh",
"Type": "String"
},
{
"Name": "/this/is/another/secret",
"Value": "hmmmm",
"Type": "SecureString",
"Tags": [
{
"Key": "Project Name",
"Value": "Project X"
}
]
}
]
}
Note: You cannot used Overwrite and tags in the same call. You should either add tags on first creation, or add / remove tags later on.
{
"secrets": [
{
"Name": "/this/is/super/secret",
"Value": "new secret",
"Type": "String",
"Overwrite": true
},
{
"Name": "/this/is/another/secret",
"Value": "hmmmm",
"Type": "SecureString",
"Tags": [
{
"Key": "Project Name",
"Value": "Project X"
}
]
}
]
}
FAQs
pass in a encrypted file and kms key id, the package will decrypt the data, and upload the contents to aws ssm.
We found that ssm-mass-uploader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.