-
Notifications
You must be signed in to change notification settings - Fork 0
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
PCE-89 Update company name and invoice contact information in AWS #3
base: main
Are you sure you want to change the base?
Conversation
bjornrog
commented
May 21, 2024
- Update primary contact information
- Added support for maintaining master account contact information
- Added support for deployment into the master account (no delegated admin for contacts)
- Prepare for deployment into every customer master account:
- Providing sane defaults
- Making sure lambda is run when terraform apply is done
…cross all customer master accounts
…unts for controlling alternate contact email
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.
Merely documentation changes....
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.
Maybe the Usage section should be updated...
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.
Actually I think I must refactor the deployment in https://github.com/basefarm/bf-internal-security/tree/main/account. Move the contact administration to the master account.
This way we do not actually need the "delegated admin" support, thus there will be only one module, and usage must be updated accordingly.
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.
Should the override tags be documented (tds:contact:*
)
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.
Of course :-) Will add
if error.response['Error']['Code'] == 'ResourceNotFoundException': | ||
pass | ||
else: | ||
raise error | ||
pass |
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.
I think this pass
can be removed
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.
Agree.
except ClientError as error: | ||
FAILED_ACCOUNTS.append(accountId) | ||
print(error) | ||
pass |
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.
This one too (pass
)
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.
Agree, was in the original code.