This file contains hidden or 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
oci cloud-guard resource-type-summary list-resource-types | |
{ | |
"data": { | |
"items": [ | |
{ | |
"display-name": "BlockVolume", | |
"name": "BlockVolume", | |
"rules": null | |
}, | |
{ |
This file contains hidden or 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
#!/bin/bash | |
export AWS_PROFILE=$1 | |
export AWS_DEFAULT_REGION=$2 | |
export AWS_DEFAULT_OUTPUT=text | |
echo " It Starts..." | |
echo " Evaluating Security Groups Ingress Rules" |
This file contains hidden or 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 jenkins/jenkins:2.190.2 | |
# Distributed Builds plugins | |
RUN /usr/local/bin/install-plugins.sh ssh-slaves | |
RUN /usr/local/bin/install-plugins.sh workflow-aggregator | |
RUN /usr/local/bin/install-plugins.sh docker-plugin | |
# install Notifications and Publishing plugins | |
RUN /usr/local/bin/install-plugins.sh email-ext |
This file contains hidden or 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
######################## | |
## Variables | |
######################## | |
variable "environment_name" { | |
description = "The name of the environment" | |
} | |
variable "vpc_id" { |
This file contains hidden or 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
Description: > | |
This template deploys a VPC, with a pair of public and private subnets spread | |
across two Availabilty Zones. It deploys an Internet Gateway, with a default | |
route on the public subnets. It deploys a pair of NAT Gateways (one in each AZ), | |
and default routes for them in the private subnets. This also adds a S3 VPC | |
Endpoint for local VPC access to S3 | |
Parameters: | |
EnvironmentName: |
This file contains hidden or 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' | |
Description: Create an Apache webserver with a webpage. | |
Parameters: | |
InstanceType: | |
Description: Type of EC2 instance to launch | |
Type: String | |
Default: t1.micro | |
VPCId: | |
Description: VPC Id to put the Security Group | |
Type: String |