- https://www.cloudamqp.com/
- https://www.cloudamqp.com/docs/php.html
- https://github.com/cloudamqp/php-amqplib-example
git clone [email protected]:cloudamqp/php-amqplib-example.git
cd php-amqplib-example
| --- | |
| - name: test | |
| hosts: localhost | |
| become: no | |
| gather_facts: no | |
| vars: | |
| list1_default_dict: | |
| name: "unknown" | |
| k1: "x" |
| #!/bin/bash | |
| # see https://git-scm.com/book/en/v2/Git-Branching-Branching-Workflows | |
| repo="test" | |
| name="your_name" | |
| mail="[email protected]" | |
| # clean | |
| rm -fr ${repo} ${repo}.git |
| resource "aws_iam_group" "test" { | |
| name = "test_path" | |
| path = "/test/" | |
| } | |
| resource "aws_iam_group_policy_attachment" "test" { | |
| group = aws_iam_group.test.name | |
| policy_arn = "arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess" | |
| } |
| data "aws_vpc" "default" { | |
| default = true | |
| } | |
| data "aws_subnet_ids" "default" { | |
| vpc_id = data.aws_vpc.default.id | |
| } | |
| data "aws_security_group" "default" { |
| local function keyCode(key, modifiers) | |
| modifiers = modifiers or {} | |
| return function() | |
| hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), true):post() | |
| hs.timer.usleep(1000) | |
| hs.eventtap.event.newKeyEvent(modifiers, string.lower(key), false):post() | |
| end | |
| end | |
| local function remapKey(modifiers, key, keyCode) |
git clone [email protected]:cloudamqp/php-amqplib-example.git
cd php-amqplib-example
I hereby claim:
To claim this, I am signing this object:
| $ cat test.tf | |
| variable "employee" { | |
| type = "list" | |
| default = [ | |
| { | |
| no = 1 | |
| name = "田中" | |
| }, |