mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #28525 from rallytime/route53_spacing
Fix spacing in doc examples for boto_route53 state and module
This commit is contained in:
commit
73c5735fc1
2 changed files with 33 additions and 33 deletions
|
@ -27,9 +27,9 @@ Connection module for Amazon Route53
|
|||
as a passed in dict, or as a string to pull from pillars or minion config:
|
||||
|
||||
myprofile:
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
region: us-east-1
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
region: us-east-1
|
||||
|
||||
:depends: boto
|
||||
'''
|
||||
|
|
|
@ -29,46 +29,46 @@ passed in as a dict, or as a string to pull from pillars or minion config:
|
|||
.. code-block:: yaml
|
||||
|
||||
myprofile:
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
region: us-east-1
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
region: us-east-1
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
mycnamerecord:
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: my-elb.us-east-1.elb.amazonaws.com.
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: CNAME
|
||||
- region: us-east-1
|
||||
- keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
- key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: my-elb.us-east-1.elb.amazonaws.com.
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: CNAME
|
||||
- region: us-east-1
|
||||
- keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
- key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
|
||||
# Using a profile from pillars
|
||||
myarecord:
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: 1.1.1.1
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: A
|
||||
- region: us-east-1
|
||||
- profile: myprofile
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: 1.1.1.1
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: A
|
||||
- region: us-east-1
|
||||
- profile: myprofile
|
||||
|
||||
# Passing in a profile
|
||||
myarecord:
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: 1.1.1.1
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: A
|
||||
- region: us-east-1
|
||||
- profile:
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
boto_route53.present:
|
||||
- name: test.example.com.
|
||||
- value: 1.1.1.1
|
||||
- zone: example.com.
|
||||
- ttl: 60
|
||||
- record_type: A
|
||||
- region: us-east-1
|
||||
- profile:
|
||||
keyid: GKTADJGHEIQSXMKKRBJ08H
|
||||
key: askdjghsdfjkghWupUjasdflkdfklgjsdfjajkghs
|
||||
'''
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue