-
Notifications
You must be signed in to change notification settings - Fork 17
Draft proposal; Support autoupdate in AWS Private operators #1870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
@@ -190,8 +196,41 @@ Resources: | |||
- Effect: Allow | |||
Action: 'secretsmanager:GetSecretValue' | |||
Resource: !Sub 'arn:aws:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:uid2-config-stack-${AWS::StackName}*' | |||
- Sid: EC2LaunchTemplateWrite |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
More permissions needed to allow autoscaling and launch template access.
This can be made optional only if customer enables auto-update.
@@ -230,9 +269,13 @@ Resources: | |||
CidrIp: 0.0.0.0/0 | |||
Description: "Allow Outbound DNS" | |||
VpcId: !Ref VpcId | |||
Tags: | |||
- Key: Project | |||
Value: UID2 | |||
LaunchTemplate: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding tags to all resources created, to have tag based IAM permissions.
@@ -0,0 +1,5 @@ | |||
# Run the daily autoupdate job |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cron job to check and update
No description provided.