mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
0a62f13464
Summary: Ran `arc lint --apply-patches --everything` over rP, mainly to change double quotes to single quotes where appropriate. These changes also validate that the `ArcanistXHPASTLinter::LINT_DOUBLE_QUOTE` rule is working as expected. Test Plan: Eyeballed it. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9431
45 lines
1.6 KiB
PHP
45 lines
1.6 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAWSConfigOptions
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
public function getName() {
|
|
return pht('Amazon Web Services');
|
|
}
|
|
|
|
public function getDescription() {
|
|
return pht('Configure integration with AWS (EC2, SES, S3, etc).');
|
|
}
|
|
|
|
public function getOptions() {
|
|
return array(
|
|
$this->newOption('amazon-ses.access-key', 'string', null)
|
|
->setLocked(true)
|
|
->setDescription(pht('Access key for Amazon SES.')),
|
|
$this->newOption('amazon-ses.secret-key', 'string', null)
|
|
->setMasked(true)
|
|
->setDescription(pht('Secret key for Amazon SES.')),
|
|
$this->newOption('amazon-s3.access-key', 'string', null)
|
|
->setLocked(true)
|
|
->setDescription(pht('Access key for Amazon S3.')),
|
|
$this->newOption('amazon-s3.secret-key', 'string', null)
|
|
->setMasked(true)
|
|
->setDescription(pht('Secret key for Amazon S3.')),
|
|
$this->newOption('amazon-s3.endpoint', 'string', null)
|
|
->setLocked(true)
|
|
->setDescription(
|
|
pht(
|
|
'Explicit S3 endpoint to use. Leave empty to have Phabricator '.
|
|
'select and endpoint. Normally, you do not need to set this.'))
|
|
->addExample(null, 'Use default endpoint')
|
|
->addExample('s3.amazon.com', 'Use specific endpoint'),
|
|
$this->newOption('amazon-ec2.access-key', 'string', null)
|
|
->setLocked(true)
|
|
->setDescription(pht('Access key for Amazon EC2.')),
|
|
$this->newOption('amazon-ec2.secret-key', 'string', null)
|
|
->setMasked(true)
|
|
->setDescription(pht('Secret key for Amazon EC2.')),
|
|
);
|
|
}
|
|
|
|
}
|