aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/terraform-aws-elastic-beanstalk-environment
AgeCommit message (Collapse)AuthorFilesLines
2022-05-17fix(uti): Terraform settingsPeter Mikus2-0/+66
Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: Ica539512f3129391551938541d00d9e9d1560af3
2022-03-17feat(dash): Terraform AWS Beanstalk splitPeter Mikus10-0/+1059
Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: I6a9f54be0f734cd267c7ea5aa7f9933e04a8e139
span> /** * @brief * [re]stack a midchain. 'Stacking' is the act of forming parent-child * relationships in the data-plane graph. * * @param adj_index * The index of the midchain to stack * * @param dpo * The parent DPO to stack onto (i.e. become a child of). */ extern void adj_nbr_midchain_stack(adj_index_t adj_index, const dpo_id_t *dpo); /** * @brief * unstack a midchain. This will break the chain between the midchain and * the next graph section. This is a implemented as stack-on-drop * * @param adj_index * The index of the midchain to stack */ extern void adj_nbr_midchain_unstack(adj_index_t adj_index); /** * @brief * Module initialisation */ extern void adj_midchain_module_init(void); /** * @brief * Format a midchain adjacency */ extern u8* format_adj_midchain(u8* s, va_list *ap); #endif