Für github-dev-role:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "arn:aws:iam::YOUR-ACCOUNT-ID:oidc-provider/token.actions.githubusercontent.com"
Für github-dev-role:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Federated": "arn:aws:iam::YOUR-ACCOUNT-ID:oidc-provider/token.actions.githubusercontent.com"
#!/bin/bash | |
# Configuration | |
GERRIT_BASE_URL="https://gerrit.example.com" | |
GITHUB_ORG="your-github-org" | |
GITHUB_TOKEN="your-personal-access-token" | |
REPO_LIST="repos.txt" # A file containing the list of Gerrit repositories | |
TEMP_DIR="/tmp/gerrit-to-github" | |
# Check dependencies |
resource "aws_iam_role" "opensearch_role" { | |
name = "opensearch-access-role" | |
assume_role_policy = jsonencode({ | |
Version = "2012-10-17" | |
Statement = [ | |
{ | |
Effect = "Allow" | |
Principal = { | |
Service = "es.amazonaws.com" | |
} |
# Rezepte von Sarah und Bernhard | |
## Nachtische | |
### Cinnamon Rolls | |
#### Zutaten | |
#### Teig |
# Treffen 2019-02-06 | |
## Erledigt | |
* Stadtmauer erledigt | |
* Grundstückstausch erledigt | |
## Angebote | |
### Gauer |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" type="text/css" /> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet-src.js"></script> | |
<meta charset="utf-8"> | |
<title>Leaflet JS Bin</title> | |
<style> | |
#map { | |
width:100%; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" type="text/css" /> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet-src.js"></script> | |
<meta charset="utf-8"> | |
<title>Leaflet JS Bin</title> | |
<style> | |
#map { | |
width:100%; |
/* Remove Outline on click @slackhq */ | |
button { | |
&.close { | |
&:active { | |
color: rgb(42, 128, 185); | |
opacity:1; | |
} | |
&:focus { | |
outline: none; |