The ACM certificate resource allows requesting and management of certificates from the Amazon Certificate Manager.
Name | Version |
---|---|
terraform | >= 0.14 |
aws | >= 3 |
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "BasePermissions", | |
"Effect": "Allow", | |
"Action": [ | |
"s3:ListAllMyBuckets", | |
"sns:GetSubscriptionAttributes", | |
"sns:GetTopicAttributes", |
# Base | |
FROM node:16.16.0-alpine3.16 AS base | |
WORKDIR /opt/app | |
RUN apk update && \ | |
apk add --no-cache jq | |
COPY package.json ./package.json | |
COPY package-lock.json ./package-lock.json |
--- | |
- name: Check if brew binary exists | |
ansible.builtin.stat: | |
path: "{{ homebrew_prefix }}/bin/brew" | |
register: brew_check | |
- name: Determine Homebrew ownership variables |