View sample-event-source.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MyFunction: | |
Type: AWS::Serverless::Function | |
Properties: | |
Runtime: python3.8 | |
CodeUri: ./src/my_function | |
Handler: index.lambda_handler | |
Events: | |
TableChanges: | |
Type: EventBridgeRule | |
Properties: |
View dynamodb-eventbus-stream-processor.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import json | |
import os | |
import boto3 | |
EVENT_BUS = os.getenv("EVENT_BUS") | |
events_client = boto3.client("events") |
View ami-lookup.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: 2010-09-09 | |
Transform: AWS::Serverless-2016-10-31 | |
Resources: | |
NatInstaceAmi: | |
Type: AWS::CloudFormation::CustomResource | |
Properties: | |
ServiceToken: !GetAtt NatInstanceAmiLookup.Arn |
View jamfpro-template.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: 2010-09-09 | |
Parameters: | |
AvailabilityZone1: | |
Type: String | |
Default: a | |
AvailabilityZone2: | |
Type: String |
View jamfpro-docker-compose.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
mysql: | |
image: "mysql:5.7" | |
networks: | |
- jamfnet | |
ports: | |
- "3306:3306" | |
environment: | |
MYSQL_ROOT_PASSWORD: "jamfsw03" |
View build_jamfpro_docker_version.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run from a directory that contains your ROOT.war file. | |
# Change VERSION to that of the ROOT.war being deployed | |
VERSION=10.17.0 | |
docker build . -t jamfpro:${VERSION} -f - <<EOF | |
FROM jamfdevops/jamfpro:0.0.10 | |
ADD ROOT.war /data/ | |
EOF |
View create_jss_account.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import getpass | |
import sys | |
import xml.etree.ElementTree as Et | |
import requests | |
try: | |
NEW_USERNAME = sys.argv[1] | |
except IndexError: | |
print('No username provided!') |
View cipher.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
import os | |
from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes | |
from cryptography.hazmat.backends import default_backend | |
class AESCipher(object): | |
block_size = algorithms.AES.block_size / 8 |
View JamfUAPIAuthToken.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import datetime | |
import logging | |
import requests | |
import urlparse | |
class JamfUAPIAuthToken(object): | |
def __init__(self, jamf_url, username, password): | |
""" | |
:param jamf_url: Jamf Pro URL | |
:type jamf_url: str |
View Enabled_Disabled_Policies.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
import getpass | |
import sys | |
import xml.etree.ElementTree as Et | |
import urllib | |
import urllib2 | |
reload(sys) | |
sys.setdefaultencoding('utf-8') |