Skip to content

Commit

Permalink
Fix markdown tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Tompage1994 committed Jan 15, 2024
1 parent 1b862a2 commit e02fdb9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion roles/ansible_config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Currently:
|`ansible_config_group`|""|no|str|The group the resulting ansible config file or directory should have.|
|`ah_configuration_working_dir`|"/var/tmp"|no|path|Location to render the ansible config file to.|
|`automation_hub_list`|`[]`|no|list|A list of Automation hubs and galaxies to put in the ansible config, see below for details.|
|`ansible_config_list`|`[{"header":"galaxy","keypairs":[{"key":"ignore_certs","value":"{{ not (ah_validate_certs | bool) }}"}]}]`|no|list|A set of ansible config settings, a default is set, but can be overridden, see below for details.|
|`ansible_config_list`|`[{"header":"galaxy","keypairs":[{"key":"ignore_certs","value":"{{ not (ah_validate_certs \| bool) }}"}]}]`|no|list|A set of ansible config settings, a default is set, but can be overridden, see below for details.|
|`ah_token`|""|no|Tower Admin User's token on the Automation Hub Server. This should be stored in an Ansible Vault at or elsewhere and called from a parent playbook.||
|`ah_path_prefix`|`galaxy`|no|Tower Admin User's token on the Automation Hub Server. This should be stored in an Ansible Vault at or elsewhere and called from a parent playbook.||

Expand Down
2 changes: 1 addition & 1 deletion roles/collection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ An Ansible Role to update, or destroy Automation Hub Collections.
|`ah_request_timeout`|`10`|no|Specify the timeout Ansible should use in requests to the Galaxy or Automation Hub host.||
|`ah_path_prefix`|""|no|API path used to access the api. Either galaxy, automation-hub, or custom||
|`ah_configuration_async_dir`|`null`|no|Sets the directory to write the results file for async tasks. The default value is set to `null` which uses the Ansible Default of `/root/.ansible_async/`.||
|`ah_collections`|`null`|`no`|`see below`|yes|Data structure describing your collections, described below.||
|`ah_collections`|`see below`|yes|Data structure describing your collections, described below.||

These are the sub options for the vars `ah_collections` which are dictionaries with the options you want. See examples for details.
|Variable Name|Default Value|Required|Description|Example|
Expand Down
2 changes: 1 addition & 1 deletion roles/collection_remote/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This also speeds up the overall role.
|`proxy_url`|``|no|The URL for the proxy. Defaults to global `proxy_url` variable.||
|`proxy_username`|``|no|The username for the proxy authentication. Defaults to global `proxy_username` variable.||
|`proxy_password`|``|no|The password for the proxy authentication. Defaults to global `proxy_password` variable.||
|`state`|`present`|no|Desired state of the collection_remote. Either `present` or `absent`.|
|`state`|`present`|no|Desired state of the collection_remote. Either `present` or `absent`.||

### Standard Project Data Structure

Expand Down
8 changes: 4 additions & 4 deletions roles/collection_repository/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ This also speeds up the overall role.
|`distribution`|""|no|dict|Distribution options for the collection repository. See additional options below for details. Most users will leave this blank|
|`private`|""|no|boolean|Make the Collection repository private.|
|`remote`|""|no|str|Remote repository name. This is used if the collections use a remote source.|
|`update`|`false`|no|bool|Wait for the Collection repository to finish syncing before returning.||
|`wait`|`true`|no|bool|Wait for the Collection repository to finish syncing before returning.||
|`interval`|1.0|no|float|The interval to request an update from Automation Hub.||
|`timeout`|""|no|int|If waiting for the project to update this will abort after this amount of seconds.||
|`update`|`false`|no|bool|Wait for the Collection repository to finish syncing before returning.|
|`wait`|`true`|no|bool|Wait for the Collection repository to finish syncing before returning.|
|`interval`|1.0|no|float|The interval to request an update from Automation Hub.|
|`timeout`|""|no|int|If waiting for the project to update this will abort after this amount of seconds.|
|`state`|`present`|no|str|Desired state of the collection repository. Either `present` or `absent`.|

#### Addtional Option Variables
Expand Down
6 changes: 3 additions & 3 deletions roles/collection_repository_sync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ This also speeds up the overall role.
|Variable Name|Default Value|Required|Type|Description|
|:---:|:---:|:---:|:---:|:---:|
|`name`|""|yes|str| Collection Repository name. Probably one of community, validated, rh-certified, or one you have created.|
|`wait`|`true`|no|bool|Wait for the Collection repository to finish syncing before returning.||
|`interval`|1.0|no|float|The interval to request an update from Automation Hub.||
|`timeout`|""|no|int|If waiting for the project to update this will abort after this amount of seconds.||
|`wait`|`true`|no|bool|Wait for the Collection repository to finish syncing before returning.|
|`interval`|1.0|no|float|The interval to request an update from Automation Hub.|
|`timeout`|""|no|int|If waiting for the project to update this will abort after this amount of seconds.|
|`state`|`present`|no|str|Desired state of the collection repository. Either `present` or `absent`.|

### Standard Project Data Structure
Expand Down
2 changes: 1 addition & 1 deletion roles/dispatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Each role the dispatch role calls has a separate variable which can be turned on

|Variable Name|Default Value|Required|Description|
|:---:|:---:|:---:|:---:|
ah_configuration_ee_registry_secure_logging|`False`|no|Whether or not to include the sensitive Registry role tasks in the log. Set this value to `True` if you will be providing your sensitive values from elsewhere.|
|`ah_configuration_ee_registry_secure_logging`|`False`|no|Whether or not to include the sensitive Registry role tasks in the log. Set this value to `True` if you will be providing your sensitive values from elsewhere.|
|`ah_configuration_secure_logging`|""|no|This variable enables secure logging as well, but is shared across multiple roles, see above.|

### Asynchronous Retry Variables
Expand Down

0 comments on commit e02fdb9

Please sign in to comment.