View main.tf
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
provider "aws" { | |
region = "${var.region}" | |
version = "1.10.0" | |
} | |
provider "aws" { | |
region = "us-east-1" | |
alias = "certificate-region" | |
version = "1.10.0" | |
} |
View jenkins-theme-aw1.css
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 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) |
View slackbot_client.psm1
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
<# | |
.SYNOPSIS | |
Method to send webhook into Slack. | |
.DESCRIPTION | |
Method to set message into Slack. | |
.PARAMETER webhookUrl | |
Url of the webhook |