File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ locals {
33 " ghr:environment" = var.prefix
44 })
55
6- _primary_app_id = coalesce (var. github_app . id_ssm , module. ssm . parameters . github_app_id )
7- _primary_app_key_base64 = coalesce (var. github_app . key_base64_ssm , module. ssm . parameters . github_app_key_base64 )
6+ primary_app_id = coalesce (var. github_app . id_ssm , module. ssm . parameters . github_app_id )
7+ primary_app_key_base64 = coalesce (var. github_app . key_base64_ssm , module. ssm . parameters . github_app_key_base64 )
88
99 github_app_parameters = {
1010 id = concat (
11- [local . _primary_app_id ],
11+ [local . primary_app_id ],
1212 [for p in module . ssm . additional_app_parameters : p . id ]
1313 )
1414 key_base64 = concat (
15- [local . _primary_app_key_base64 ],
15+ [local . primary_app_key_base64 ],
1616 [for p in module . ssm . additional_app_parameters : p . key_base64 ]
1717 )
1818 installation_id = concat (
Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ locals {
33 " ghr:environment" = var.prefix
44 })
55
6- _primary_app_id = coalesce (var. github_app . id_ssm , module. ssm . parameters . github_app_id )
7- _primary_app_key_base64 = coalesce (var. github_app . key_base64_ssm , module. ssm . parameters . github_app_key_base64 )
6+ primary_app_id = coalesce (var. github_app . id_ssm , module. ssm . parameters . github_app_id )
7+ primary_app_key_base64 = coalesce (var. github_app . key_base64_ssm , module. ssm . parameters . github_app_key_base64 )
88
99 github_app_parameters = {
1010 id = concat (
11- [local . _primary_app_id ],
11+ [local . primary_app_id ],
1212 [for p in module . ssm . additional_app_parameters : p . id ]
1313 )
1414 key_base64 = concat (
15- [local . _primary_app_key_base64 ],
15+ [local . primary_app_key_base64 ],
1616 [for p in module . ssm . additional_app_parameters : p . key_base64 ]
1717 )
1818 installation_id = concat (
You can’t perform that action at this time.
0 commit comments