Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
41c5150
initialize terraform repo
chakeega Feb 7, 2023
ee77950
add yaml translation for cfn
chakeega Feb 7, 2023
dd47071
initial cf2tf conversion
chakeega Feb 7, 2023
96afafe
begin debug and add test dbs
chakeega Feb 7, 2023
87bbbf8
change file structure and add provider
chakeega Feb 7, 2023
93e1cc2
cf2tf conversion of source
chakeega Feb 7, 2023
fb6ca28
fix typos
chakeega Feb 7, 2023
fda79e4
initialse tf
chakeega Feb 7, 2023
db0e26d
solve for cfn topics list attribute
chakeega Feb 7, 2023
7949762
update variables and first pass at destination work
chakeega Feb 7, 2023
a8a560c
correct sns topic arn policies
chakeega Feb 7, 2023
b805eae
fix invoke state machine policy
chakeega Feb 7, 2023
497c727
fix invoke state machine policy
chakeega Feb 7, 2023
d364156
fix invoke state machine policy
chakeega Feb 7, 2023
4741253
fix state execution policy
chakeega Feb 7, 2023
b5c5603
fix lambda iam role
chakeega Feb 7, 2023
56f516e
accurately reference s3 buckets
chakeega Feb 7, 2023
a5829ae
rationalise sns topic creation
chakeega Feb 7, 2023
992d2ee
change directory names
chakeega Feb 7, 2023
9b5a9a1
cleanup of terraform resources
chakeega Feb 7, 2023
e81ea27
fix lambda function arn count
chakeega Feb 7, 2023
b2f2512
fix state machine references
chakeega Feb 7, 2023
96385a1
fix deployment and split iam into separate file
chakeega Feb 8, 2023
69ce803
enable old snapshots cw events
chakeega Feb 8, 2023
8f77df9
fix log group naming
chakeega Feb 8, 2023
259af75
move stepfuncs and lambdas into their own files
chakeega Feb 8, 2023
3343246
fix iam role definitions
chakeega Feb 8, 2023
fb08161
finialise first deployment
chakeega Feb 8, 2023
6a25761
split out source sns docs
chakeega Feb 8, 2023
7b7ad2c
split raw conversion into separate files
chakeega Feb 8, 2023
d4abb53
update gitignore
chakeega Feb 8, 2023
a6b81c3
remove makefile
chakeega Feb 8, 2023
f74bd2c
fix cloudwatch rules and logs
chakeega Feb 9, 2023
8f2da96
break out source into separate files
chakeega Feb 9, 2023
84f6a76
source iam fix
chakeega Feb 9, 2023
0188dbf
fix step function defintiions
chakeega Feb 9, 2023
bbb3e9d
fix reference issues
chakeega Feb 9, 2023
a901f82
format sfn statemachine definition
chakeega Feb 9, 2023
10a94d3
remove counts
chakeega Feb 10, 2023
b17ee70
add test dbs
chakeega Feb 10, 2023
e9fafa9
fix naming issues
chakeega Feb 10, 2023
da7cd4d
update spolicy name
chakeega Feb 10, 2023
93a4810
fix iam policy
chakeega Feb 10, 2023
ca07fb6
run format
chakeega Feb 10, 2023
221e7d3
generalise variables
chakeega Feb 10, 2023
cca653d
remove bucket name
chakeega Feb 10, 2023
5cc8b00
replace with main branch
chakeega Mar 1, 2023
a7c36fc
add readme
chakeega Mar 1, 2023
d306d72
Merge pull request #1 from charliekeeegan/master
charliekeeegan Mar 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Local .terraform directories
**/.terraform/*

# .tfstate files
*.tfstate
*.tfstate.*

# Crash log files
crash.log
crash.*.log

# Exclude all .tfvars files, which are likely to contain sensitive data, such as
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
*.tfvars
*.tfvars.json

# Ignore override files as they are usually used to override resources locally and so
# are not checked in
override.tf
override.tf.json
*_override.tf
*_override.tf.json

# Include override files you do wish to add to version control using negated pattern
# !example_override.tf

# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
# example: *tfplan*

# Ignore CLI configuration files
.terraformrc
terraform.rc

.DS_Store
201 changes: 0 additions & 201 deletions LICENSE

This file was deleted.

Loading