mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +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
@ -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…
Reference in New Issue
Block a user