mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import Component from '@glimmer/component';
 | 
						|
import { action } from '@ember/object';
 | 
						|
 | 
						|
/**
 | 
						|
 * @module ConfigureAwsSecretComponent
 | 
						|
 *
 | 
						|
 * @example
 | 
						|
 * ```js
 | 
						|
 * <ConfigureAwsSecret
 | 
						|
    @model={{model}}
 | 
						|
    @tab={{tab}}
 | 
						|
    @accessKey={{accessKey}}
 | 
						|
    @secretKey={{secretKey}}
 | 
						|
    @region={{region}}
 | 
						|
    @iamEndpoint={{iamEndpoint}}
 | 
						|
    @stsEndpoint={{stsEndpoint}}
 | 
						|
    @saveAWSRoot={{action "save" "saveAWSRoot"}}
 | 
						|
    @saveAWSLease={{action "save" "saveAWSLease"}} />
 | 
						|
 * ```
 | 
						|
 *
 | 
						|
 * @param {object} model - aws secret engine model
 | 
						|
 * @param {string} tab - current tab selection
 | 
						|
 * @param {string} accessKey - AWS access key
 | 
						|
 * @param {string} secretKey - AWS secret key
 | 
						|
 * @param {string} region - AWS region
 | 
						|
 * @param {string} iamEndpoint - IAM endpoint
 | 
						|
 * @param {string} stsEndpoint - Sts endpoint
 | 
						|
 * @param {Function} saveAWSRoot - parent action which saves AWS root credentials
 | 
						|
 * @param {Function} saveAWSLease - parent action which updates AWS lease information
 | 
						|
 *
 | 
						|
 */
 | 
						|
export default class ConfigureAwsSecretComponent extends Component {
 | 
						|
  @action
 | 
						|
  saveRootCreds(data, event) {
 | 
						|
    event.preventDefault();
 | 
						|
    this.args.saveAWSRoot(data);
 | 
						|
  }
 | 
						|
 | 
						|
  @action
 | 
						|
  saveLease(data, event) {
 | 
						|
    event.preventDefault();
 | 
						|
    this.args.saveAWSLease(data);
 | 
						|
  }
 | 
						|
 | 
						|
  @action
 | 
						|
  handleTtlChange(name, ttlObj) {
 | 
						|
    // lease values cannot be undefined, set to 0 to use default
 | 
						|
    const valueToSet = ttlObj.enabled ? ttlObj.goSafeTimeString : 0;
 | 
						|
    this.args.model.set(name, valueToSet);
 | 
						|
  }
 | 
						|
}
 |