Skip to content

Instantly share code, notes, and snippets.

@marazt
marazt / main.tf
Last active March 12, 2018 11:21
Setup Static Website on AWS S3 with Cloudfront, HTTPS and Route53
provider "aws" {
region = "${var.region}"
version = "1.10.0"
}
provider "aws" {
region = "us-east-1"
alias = "certificate-region"
version = "1.10.0"
}
@marazt
marazt / slackbot_client.psm1
Last active March 10, 2018 12:40
Send Message to Slack via PowerShell
<#
.SYNOPSIS
Method to send webhook into Slack.
.DESCRIPTION
Method to set message into Slack.
.PARAMETER webhookUrl
Url of the webhook
@marazt
marazt / jenkins-theme-aw1.css
Last active March 10, 2018 12:40
Custom Jenkins Theme
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700,500,300);
@-webkit-keyframes a {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
}
to {
-webkit-transform: rotate(1turn);
transform: rotate(1turn)