Skip to content

Instantly share code, notes, and snippets.

What is an AWS region?

  • A region is a geographical area that consists of diffrent availabilty zones. Each region consts of 2(or more) Availability Zones.

What dose an AWS Region consist of?

  • An independent collection of AWS computing resources in a defined geography.

Which statement best describes Availability Zones?

  • Distinct locations from within an AWS region that are engineered to be
@Giri1515
Giri1515 / Jenkinsfile
Created June 30, 2022 03:42 — forked from Schadenfeude/Jenkinsfile
Example Jenkinsfile declarative pipeline for Android projects
pipeline {
agent {
// Run on a build agent where we have the Android SDK installed
label 'android'
}
environment {
// Fastlane Environment Variables
PATH = "$HOME/.fastlane/bin:" +
"$HOME/.rvm/gems/ruby-2.5.3/bin:" +
"$HOME/.rvm/gems/ruby-2.5.3@global/bin:" +