index.html 152 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="icon" href="../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.9">
  8. <title>Spec - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../assets/stylesheets/main.85bb2934.min.css">
  10. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  12. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  13. <script>__md_scope=new URL("..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  14. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  15. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  16. </head>
  17. <body dir="ltr">
  18. <script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. </div>
  24. <div data-md-component="announce">
  25. </div>
  26. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  27. <aside class="md-banner md-banner--warning">
  28. <div class="md-banner__inner md-grid md-typeset">
  29. You're not viewing the latest version.
  30. <a href="../..">
  31. <strong>Click here to go to latest.</strong>
  32. </a>
  33. </div>
  34. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  35. </aside>
  36. </div>
  37. <header class="md-header" data-md-component="header">
  38. <nav class="md-header__inner md-grid" aria-label="Header">
  39. <a href=".." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  40. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  41. </a>
  42. <label class="md-header__button md-icon" for="__drawer">
  43. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  44. </label>
  45. <div class="md-header__title" data-md-component="header-title">
  46. <div class="md-header__ellipsis">
  47. <div class="md-header__topic">
  48. <span class="md-ellipsis">
  49. External Secrets Operator
  50. </span>
  51. </div>
  52. <div class="md-header__topic" data-md-component="header-topic">
  53. <span class="md-ellipsis">
  54. Spec
  55. </span>
  56. </div>
  57. </div>
  58. </div>
  59. <label class="md-header__button md-icon" for="__search">
  60. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  61. </label>
  62. <div class="md-search" data-md-component="search" role="dialog">
  63. <label class="md-search__overlay" for="__search"></label>
  64. <div class="md-search__inner" role="search">
  65. <form class="md-search__form" name="search">
  66. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  67. <label class="md-search__icon md-icon" for="__search">
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  69. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  70. </label>
  71. <nav class="md-search__options" aria-label="Search">
  72. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  74. </button>
  75. </nav>
  76. </form>
  77. <div class="md-search__output">
  78. <div class="md-search__scrollwrap" data-md-scrollfix>
  79. <div class="md-search-result" data-md-component="search-result">
  80. <div class="md-search-result__meta">
  81. Initializing search
  82. </div>
  83. <ol class="md-search-result__list" role="presentation"></ol>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="md-header__source">
  90. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  91. <div class="md-source__icon md-icon">
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  93. </div>
  94. <div class="md-source__repository">
  95. External Secrets Operator
  96. </div>
  97. </a>
  98. </div>
  99. </nav>
  100. </header>
  101. <div class="md-container" data-md-component="container">
  102. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  103. <div class="md-grid">
  104. <ul class="md-tabs__list">
  105. <li class="md-tabs__item">
  106. <a href=".." class="md-tabs__link">
  107. Introduction
  108. </a>
  109. </li>
  110. <li class="md-tabs__item">
  111. <a href="../api/components/" class="md-tabs__link">
  112. API
  113. </a>
  114. </li>
  115. <li class="md-tabs__item">
  116. <a href="../guides/introduction/" class="md-tabs__link">
  117. Guides
  118. </a>
  119. </li>
  120. <li class="md-tabs__item">
  121. <a href="../provider/aws-secrets-manager/" class="md-tabs__link">
  122. Provider
  123. </a>
  124. </li>
  125. <li class="md-tabs__item">
  126. <a href="../examples/gitops-using-fluxcd/" class="md-tabs__link">
  127. Examples
  128. </a>
  129. </li>
  130. <li class="md-tabs__item">
  131. <a href="../contributing/devguide/" class="md-tabs__link">
  132. Community
  133. </a>
  134. </li>
  135. </ul>
  136. </div>
  137. </nav>
  138. <main class="md-main" data-md-component="main">
  139. <div class="md-main__inner md-grid">
  140. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  141. <div class="md-sidebar__scrollwrap">
  142. <div class="md-sidebar__inner">
  143. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  144. <label class="md-nav__title" for="__drawer">
  145. <a href=".." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  146. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  147. </a>
  148. External Secrets Operator
  149. </label>
  150. <div class="md-nav__source">
  151. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  152. <div class="md-source__icon md-icon">
  153. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  154. </div>
  155. <div class="md-source__repository">
  156. External Secrets Operator
  157. </div>
  158. </a>
  159. </div>
  160. <ul class="md-nav__list" data-md-scrollfix>
  161. <li class="md-nav__item md-nav__item--nested">
  162. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  163. <div class="md-nav__link md-nav__link--index ">
  164. <a href="..">Introduction</a>
  165. <label for="__nav_1">
  166. <span class="md-nav__icon md-icon"></span>
  167. </label>
  168. </div>
  169. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  170. <label class="md-nav__title" for="__nav_1">
  171. <span class="md-nav__icon md-icon"></span>
  172. Introduction
  173. </label>
  174. <ul class="md-nav__list" data-md-scrollfix>
  175. <li class="md-nav__item">
  176. <a href="../introduction/overview/" class="md-nav__link">
  177. Overview
  178. </a>
  179. </li>
  180. <li class="md-nav__item">
  181. <a href="../introduction/getting-started/" class="md-nav__link">
  182. Getting started
  183. </a>
  184. </li>
  185. <li class="md-nav__item">
  186. <a href="../introduction/faq/" class="md-nav__link">
  187. FAQ
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../introduction/stability-support/" class="md-nav__link">
  192. Stability and Support
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../introduction/deprecation-policy/" class="md-nav__link">
  197. Deprecation Policy
  198. </a>
  199. </li>
  200. </ul>
  201. </nav>
  202. </li>
  203. <li class="md-nav__item md-nav__item--nested">
  204. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  205. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
  206. API
  207. <span class="md-nav__icon md-icon"></span>
  208. </label>
  209. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  210. <label class="md-nav__title" for="__nav_2">
  211. <span class="md-nav__icon md-icon"></span>
  212. API
  213. </label>
  214. <ul class="md-nav__list" data-md-scrollfix>
  215. <li class="md-nav__item">
  216. <a href="../api/components/" class="md-nav__link">
  217. Components
  218. </a>
  219. </li>
  220. <li class="md-nav__item md-nav__item--nested">
  221. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  222. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  223. Core Resources
  224. <span class="md-nav__icon md-icon"></span>
  225. </label>
  226. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  227. <label class="md-nav__title" for="__nav_2_2">
  228. <span class="md-nav__icon md-icon"></span>
  229. Core Resources
  230. </label>
  231. <ul class="md-nav__list" data-md-scrollfix>
  232. <li class="md-nav__item">
  233. <a href="../api/externalsecret/" class="md-nav__link">
  234. ExternalSecret
  235. </a>
  236. </li>
  237. <li class="md-nav__item">
  238. <a href="../api/secretstore/" class="md-nav__link">
  239. SecretStore
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../api/clustersecretstore/" class="md-nav__link">
  244. ClusterSecretStore
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../api/clusterexternalsecret/" class="md-nav__link">
  249. ClusterExternalSecret
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../api/pushsecret/" class="md-nav__link">
  254. PushSecret
  255. </a>
  256. </li>
  257. </ul>
  258. </nav>
  259. </li>
  260. <li class="md-nav__item md-nav__item--nested">
  261. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  262. <div class="md-nav__link md-nav__link--index ">
  263. <a href="../api/generator/">Generators</a>
  264. <label for="__nav_2_3">
  265. <span class="md-nav__icon md-icon"></span>
  266. </label>
  267. </div>
  268. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  269. <label class="md-nav__title" for="__nav_2_3">
  270. <span class="md-nav__icon md-icon"></span>
  271. Generators
  272. </label>
  273. <ul class="md-nav__list" data-md-scrollfix>
  274. <li class="md-nav__item">
  275. <a href="../api/generator/acr/" class="md-nav__link">
  276. Azure Container Registry
  277. </a>
  278. </li>
  279. <li class="md-nav__item">
  280. <a href="../api/generator/ecr/" class="md-nav__link">
  281. AWS Elastic Container Registry
  282. </a>
  283. </li>
  284. <li class="md-nav__item">
  285. <a href="../api/generator/gcr/" class="md-nav__link">
  286. Google Container Registry
  287. </a>
  288. </li>
  289. <li class="md-nav__item">
  290. <a href="../api/generator/vault/" class="md-nav__link">
  291. Vault Dynamic Secret
  292. </a>
  293. </li>
  294. <li class="md-nav__item">
  295. <a href="../api/generator/password/" class="md-nav__link">
  296. Password
  297. </a>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="../api/generator/fake/" class="md-nav__link">
  301. Fake
  302. </a>
  303. </li>
  304. </ul>
  305. </nav>
  306. </li>
  307. <li class="md-nav__item md-nav__item--nested">
  308. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_4" >
  309. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  310. Reference Docs
  311. <span class="md-nav__icon md-icon"></span>
  312. </label>
  313. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
  314. <label class="md-nav__title" for="__nav_2_4">
  315. <span class="md-nav__icon md-icon"></span>
  316. Reference Docs
  317. </label>
  318. <ul class="md-nav__list" data-md-scrollfix>
  319. <li class="md-nav__item">
  320. <a href="../api/spec/" class="md-nav__link">
  321. API specification
  322. </a>
  323. </li>
  324. <li class="md-nav__item">
  325. <a href="../api/controller-options/" class="md-nav__link">
  326. Controller Options
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../api/metrics/" class="md-nav__link">
  331. Metrics
  332. </a>
  333. </li>
  334. </ul>
  335. </nav>
  336. </li>
  337. </ul>
  338. </nav>
  339. </li>
  340. <li class="md-nav__item md-nav__item--nested">
  341. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  342. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  343. Guides
  344. <span class="md-nav__icon md-icon"></span>
  345. </label>
  346. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  347. <label class="md-nav__title" for="__nav_3">
  348. <span class="md-nav__icon md-icon"></span>
  349. Guides
  350. </label>
  351. <ul class="md-nav__list" data-md-scrollfix>
  352. <li class="md-nav__item">
  353. <a href="../guides/introduction/" class="md-nav__link">
  354. Introduction
  355. </a>
  356. </li>
  357. <li class="md-nav__item md-nav__item--nested">
  358. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  359. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  360. External Secrets
  361. <span class="md-nav__icon md-icon"></span>
  362. </label>
  363. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  364. <label class="md-nav__title" for="__nav_3_2">
  365. <span class="md-nav__icon md-icon"></span>
  366. External Secrets
  367. </label>
  368. <ul class="md-nav__list" data-md-scrollfix>
  369. <li class="md-nav__item">
  370. <a href="../guides/all-keys-one-secret/" class="md-nav__link">
  371. Extract structured data
  372. </a>
  373. </li>
  374. <li class="md-nav__item">
  375. <a href="../guides/getallsecrets/" class="md-nav__link">
  376. Find Secrets by Name or Metadata
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../guides/datafrom-rewrite/" class="md-nav__link">
  381. Rewriting Keys
  382. </a>
  383. </li>
  384. <li class="md-nav__item md-nav__item--nested">
  385. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  386. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  387. Advanced Templating
  388. <span class="md-nav__icon md-icon"></span>
  389. </label>
  390. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  391. <label class="md-nav__title" for="__nav_3_2_4">
  392. <span class="md-nav__icon md-icon"></span>
  393. Advanced Templating
  394. </label>
  395. <ul class="md-nav__list" data-md-scrollfix>
  396. <li class="md-nav__item">
  397. <a href="../guides/templating/" class="md-nav__link">
  398. v2
  399. </a>
  400. </li>
  401. <li class="md-nav__item">
  402. <a href="../guides/templating-v1/" class="md-nav__link">
  403. v1
  404. </a>
  405. </li>
  406. </ul>
  407. </nav>
  408. </li>
  409. <li class="md-nav__item">
  410. <a href="../guides/common-k8s-secret-types/" class="md-nav__link">
  411. Kubernetes Secret Types
  412. </a>
  413. </li>
  414. <li class="md-nav__item">
  415. <a href="../guides/ownership-deletion-policy/" class="md-nav__link">
  416. Lifecycle: ownership & deletion
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../guides/decoding-strategy/" class="md-nav__link">
  421. Decoding Strategies
  422. </a>
  423. </li>
  424. <li class="md-nav__item">
  425. <a href="../guides/controller-class/" class="md-nav__link">
  426. Controller Classes
  427. </a>
  428. </li>
  429. </ul>
  430. </nav>
  431. </li>
  432. <li class="md-nav__item">
  433. <a href="../guides/generator/" class="md-nav__link">
  434. Generators
  435. </a>
  436. </li>
  437. <li class="md-nav__item md-nav__item--nested">
  438. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_4" >
  439. <label class="md-nav__link" for="__nav_3_4" id="__nav_3_4_label" tabindex="0">
  440. Operations
  441. <span class="md-nav__icon md-icon"></span>
  442. </label>
  443. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_4_label" aria-expanded="false">
  444. <label class="md-nav__title" for="__nav_3_4">
  445. <span class="md-nav__icon md-icon"></span>
  446. Operations
  447. </label>
  448. <ul class="md-nav__list" data-md-scrollfix>
  449. <li class="md-nav__item">
  450. <a href="../guides/multi-tenancy/" class="md-nav__link">
  451. Multi Tenancy
  452. </a>
  453. </li>
  454. <li class="md-nav__item">
  455. <a href="../guides/security-best-practices/" class="md-nav__link">
  456. Security Best Practices
  457. </a>
  458. </li>
  459. <li class="md-nav__item">
  460. <a href="../guides/threat-model/" class="md-nav__link">
  461. Threat Model
  462. </a>
  463. </li>
  464. <li class="md-nav__item">
  465. <a href="../guides/v1beta1/" class="md-nav__link">
  466. Upgrading to v1beta1
  467. </a>
  468. </li>
  469. <li class="md-nav__item">
  470. <a href="../guides/using-latest-image/" class="md-nav__link">
  471. Using Latest Image
  472. </a>
  473. </li>
  474. <li class="md-nav__item">
  475. <a href="../guides/disable-cluster-features/" class="md-nav__link">
  476. Disable Cluster Features
  477. </a>
  478. </li>
  479. </ul>
  480. </nav>
  481. </li>
  482. </ul>
  483. </nav>
  484. </li>
  485. <li class="md-nav__item md-nav__item--nested">
  486. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  487. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  488. Provider
  489. <span class="md-nav__icon md-icon"></span>
  490. </label>
  491. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  492. <label class="md-nav__title" for="__nav_4">
  493. <span class="md-nav__icon md-icon"></span>
  494. Provider
  495. </label>
  496. <ul class="md-nav__list" data-md-scrollfix>
  497. <li class="md-nav__item">
  498. <a href="../provider/aws-secrets-manager/" class="md-nav__link">
  499. AWS Secrets Manager
  500. </a>
  501. </li>
  502. <li class="md-nav__item">
  503. <a href="../provider/aws-parameter-store/" class="md-nav__link">
  504. AWS Parameter Store
  505. </a>
  506. </li>
  507. <li class="md-nav__item">
  508. <a href="../provider/azure-key-vault/" class="md-nav__link">
  509. Azure Key Vault
  510. </a>
  511. </li>
  512. <li class="md-nav__item">
  513. <a href="../provider/conjur/" class="md-nav__link">
  514. CyberArk Conjur
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../provider/google-secrets-manager/" class="md-nav__link">
  519. Google Cloud Secret Manager
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../provider/hashicorp-vault/" class="md-nav__link">
  524. HashiCorp Vault
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../provider/kubernetes/" class="md-nav__link">
  529. Kubernetes
  530. </a>
  531. </li>
  532. <li class="md-nav__item">
  533. <a href="../provider/ibm-secrets-manager/" class="md-nav__link">
  534. IBM Secrets Manager
  535. </a>
  536. </li>
  537. <li class="md-nav__item">
  538. <a href="../provider/akeyless/" class="md-nav__link">
  539. Akeyless
  540. </a>
  541. </li>
  542. <li class="md-nav__item">
  543. <a href="../provider/yandex-certificate-manager/" class="md-nav__link">
  544. Yandex Certificate Manager
  545. </a>
  546. </li>
  547. <li class="md-nav__item">
  548. <a href="../provider/yandex-lockbox/" class="md-nav__link">
  549. Yandex Lockbox
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../provider/alibaba/" class="md-nav__link">
  554. Alibaba Cloud
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../provider/gitlab-variables/" class="md-nav__link">
  559. GitLab Variables
  560. </a>
  561. </li>
  562. <li class="md-nav__item">
  563. <a href="../provider/oracle-vault/" class="md-nav__link">
  564. Oracle Vault
  565. </a>
  566. </li>
  567. <li class="md-nav__item">
  568. <a href="../provider/1password-automation/" class="md-nav__link">
  569. 1Password Secrets Automation
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../provider/webhook/" class="md-nav__link">
  574. Webhook
  575. </a>
  576. </li>
  577. <li class="md-nav__item">
  578. <a href="../provider/fake/" class="md-nav__link">
  579. Fake
  580. </a>
  581. </li>
  582. <li class="md-nav__item">
  583. <a href="../provider/senhasegura-dsm/" class="md-nav__link">
  584. senhasegura DevOps Secrets Management (DSM)
  585. </a>
  586. </li>
  587. <li class="md-nav__item">
  588. <a href="../provider/doppler/" class="md-nav__link">
  589. Doppler
  590. </a>
  591. </li>
  592. <li class="md-nav__item">
  593. <a href="../provider/keeper-security/" class="md-nav__link">
  594. Keeper Security
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../provider/scaleway/" class="md-nav__link">
  599. Scaleway
  600. </a>
  601. </li>
  602. </ul>
  603. </nav>
  604. </li>
  605. <li class="md-nav__item md-nav__item--nested">
  606. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  607. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  608. Examples
  609. <span class="md-nav__icon md-icon"></span>
  610. </label>
  611. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  612. <label class="md-nav__title" for="__nav_5">
  613. <span class="md-nav__icon md-icon"></span>
  614. Examples
  615. </label>
  616. <ul class="md-nav__list" data-md-scrollfix>
  617. <li class="md-nav__item">
  618. <a href="../examples/gitops-using-fluxcd/" class="md-nav__link">
  619. FluxCD
  620. </a>
  621. </li>
  622. <li class="md-nav__item">
  623. <a href="../examples/anchore-engine-credentials/" class="md-nav__link">
  624. Anchore Engine
  625. </a>
  626. </li>
  627. <li class="md-nav__item">
  628. <a href="../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  629. Jenkins
  630. </a>
  631. </li>
  632. <li class="md-nav__item">
  633. <a href="../examples/bitwarden/" class="md-nav__link">
  634. BitWarden
  635. </a>
  636. </li>
  637. </ul>
  638. </nav>
  639. </li>
  640. <li class="md-nav__item md-nav__item--nested">
  641. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  642. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  643. Community
  644. <span class="md-nav__icon md-icon"></span>
  645. </label>
  646. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  647. <label class="md-nav__title" for="__nav_6">
  648. <span class="md-nav__icon md-icon"></span>
  649. Community
  650. </label>
  651. <ul class="md-nav__list" data-md-scrollfix>
  652. <li class="md-nav__item md-nav__item--nested">
  653. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  654. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  655. Contributing
  656. <span class="md-nav__icon md-icon"></span>
  657. </label>
  658. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  659. <label class="md-nav__title" for="__nav_6_1">
  660. <span class="md-nav__icon md-icon"></span>
  661. Contributing
  662. </label>
  663. <ul class="md-nav__list" data-md-scrollfix>
  664. <li class="md-nav__item">
  665. <a href="../contributing/devguide/" class="md-nav__link">
  666. Developer guide
  667. </a>
  668. </li>
  669. <li class="md-nav__item">
  670. <a href="../contributing/process/" class="md-nav__link">
  671. Contributing Process
  672. </a>
  673. </li>
  674. <li class="md-nav__item">
  675. <a href="../contributing/release/" class="md-nav__link">
  676. Release Process
  677. </a>
  678. </li>
  679. <li class="md-nav__item">
  680. <a href="../contributing/coc/" class="md-nav__link">
  681. Code of Conduct
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="../contributing/roadmap/" class="md-nav__link">
  686. Roadmap
  687. </a>
  688. </li>
  689. </ul>
  690. </nav>
  691. </li>
  692. <li class="md-nav__item md-nav__item--nested">
  693. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  694. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  695. External Resources
  696. <span class="md-nav__icon md-icon"></span>
  697. </label>
  698. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  699. <label class="md-nav__title" for="__nav_6_2">
  700. <span class="md-nav__icon md-icon"></span>
  701. External Resources
  702. </label>
  703. <ul class="md-nav__list" data-md-scrollfix>
  704. <li class="md-nav__item">
  705. <a href="../eso-talks/" class="md-nav__link">
  706. Talks
  707. </a>
  708. </li>
  709. <li class="md-nav__item">
  710. <a href="../eso-demos/" class="md-nav__link">
  711. Demos
  712. </a>
  713. </li>
  714. <li class="md-nav__item">
  715. <a href="../eso-blogs/" class="md-nav__link">
  716. Blogs
  717. </a>
  718. </li>
  719. </ul>
  720. </nav>
  721. </li>
  722. </ul>
  723. </nav>
  724. </li>
  725. </ul>
  726. </nav>
  727. </div>
  728. </div>
  729. </div>
  730. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  731. <div class="md-sidebar__scrollwrap">
  732. <div class="md-sidebar__inner">
  733. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  734. </nav>
  735. </div>
  736. </div>
  737. </div>
  738. <div class="md-content" data-md-component="content">
  739. <article class="md-content__inner md-typeset">
  740. <h1>Spec</h1>
  741. <p>Packages:</p>
  742. <ul>
  743. <li>
  744. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  745. </li>
  746. </ul>
  747. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  748. <p>
  749. <p>Package v1beta1 contains resources for external-secrets</p>
  750. </p>
  751. <p>Resource Types:</p>
  752. <ul></ul>
  753. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  754. </h3>
  755. <p>
  756. (<em>Appears on:</em>
  757. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  758. </p>
  759. <p>
  760. <p>AWSAuth tells the controller how to do authentication with aws.
  761. Only one of secretRef or jwt can be specified.
  762. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  763. </p>
  764. <table>
  765. <thead>
  766. <tr>
  767. <th>Field</th>
  768. <th>Description</th>
  769. </tr>
  770. </thead>
  771. <tbody>
  772. <tr>
  773. <td>
  774. <code>secretRef</code></br>
  775. <em>
  776. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  777. AWSAuthSecretRef
  778. </a>
  779. </em>
  780. </td>
  781. <td>
  782. <em>(Optional)</em>
  783. </td>
  784. </tr>
  785. <tr>
  786. <td>
  787. <code>jwt</code></br>
  788. <em>
  789. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  790. AWSJWTAuth
  791. </a>
  792. </em>
  793. </td>
  794. <td>
  795. <em>(Optional)</em>
  796. </td>
  797. </tr>
  798. </tbody>
  799. </table>
  800. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  801. </h3>
  802. <p>
  803. (<em>Appears on:</em>
  804. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  805. </p>
  806. <p>
  807. <p>AWSAuthSecretRef holds secret references for AWS credentials
  808. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  809. </p>
  810. <table>
  811. <thead>
  812. <tr>
  813. <th>Field</th>
  814. <th>Description</th>
  815. </tr>
  816. </thead>
  817. <tbody>
  818. <tr>
  819. <td>
  820. <code>accessKeyIDSecretRef</code></br>
  821. <em>
  822. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  823. </em>
  824. </td>
  825. <td>
  826. <p>The AccessKeyID is used for authentication</p>
  827. </td>
  828. </tr>
  829. <tr>
  830. <td>
  831. <code>secretAccessKeySecretRef</code></br>
  832. <em>
  833. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  834. </em>
  835. </td>
  836. <td>
  837. <p>The SecretAccessKey is used for authentication</p>
  838. </td>
  839. </tr>
  840. <tr>
  841. <td>
  842. <code>sessionTokenSecretRef</code></br>
  843. <em>
  844. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  845. </em>
  846. </td>
  847. <td>
  848. <p>The SessionToken used for authentication
  849. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  850. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  851. </td>
  852. </tr>
  853. </tbody>
  854. </table>
  855. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  856. </h3>
  857. <p>
  858. (<em>Appears on:</em>
  859. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  860. </p>
  861. <p>
  862. <p>Authenticate against AWS using service account tokens.</p>
  863. </p>
  864. <table>
  865. <thead>
  866. <tr>
  867. <th>Field</th>
  868. <th>Description</th>
  869. </tr>
  870. </thead>
  871. <tbody>
  872. <tr>
  873. <td>
  874. <code>serviceAccountRef</code></br>
  875. <em>
  876. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  877. </em>
  878. </td>
  879. <td>
  880. </td>
  881. </tr>
  882. </tbody>
  883. </table>
  884. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  885. </h3>
  886. <p>
  887. (<em>Appears on:</em>
  888. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  889. </p>
  890. <p>
  891. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  892. </p>
  893. <table>
  894. <thead>
  895. <tr>
  896. <th>Field</th>
  897. <th>Description</th>
  898. </tr>
  899. </thead>
  900. <tbody>
  901. <tr>
  902. <td>
  903. <code>service</code></br>
  904. <em>
  905. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  906. AWSServiceType
  907. </a>
  908. </em>
  909. </td>
  910. <td>
  911. <p>Service defines which service should be used to fetch the secrets</p>
  912. </td>
  913. </tr>
  914. <tr>
  915. <td>
  916. <code>auth</code></br>
  917. <em>
  918. <a href="#external-secrets.io/v1beta1.AWSAuth">
  919. AWSAuth
  920. </a>
  921. </em>
  922. </td>
  923. <td>
  924. <em>(Optional)</em>
  925. <p>Auth defines the information necessary to authenticate against AWS
  926. if not set aws sdk will infer credentials from your environment
  927. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  928. </td>
  929. </tr>
  930. <tr>
  931. <td>
  932. <code>role</code></br>
  933. <em>
  934. string
  935. </em>
  936. </td>
  937. <td>
  938. <em>(Optional)</em>
  939. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  940. </td>
  941. </tr>
  942. <tr>
  943. <td>
  944. <code>region</code></br>
  945. <em>
  946. string
  947. </em>
  948. </td>
  949. <td>
  950. <p>AWS Region to be used for the provider</p>
  951. </td>
  952. </tr>
  953. </tbody>
  954. </table>
  955. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  956. (<code>string</code> alias)</p></h3>
  957. <p>
  958. (<em>Appears on:</em>
  959. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  960. </p>
  961. <p>
  962. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  963. </p>
  964. <table>
  965. <thead>
  966. <tr>
  967. <th>Value</th>
  968. <th>Description</th>
  969. </tr>
  970. </thead>
  971. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  972. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  973. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  974. </td>
  975. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  976. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  977. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  978. </td>
  979. </tr></tbody>
  980. </table>
  981. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  982. </h3>
  983. <p>
  984. (<em>Appears on:</em>
  985. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  986. </p>
  987. <p>
  988. </p>
  989. <table>
  990. <thead>
  991. <tr>
  992. <th>Field</th>
  993. <th>Description</th>
  994. </tr>
  995. </thead>
  996. <tbody>
  997. <tr>
  998. <td>
  999. <code>secretRef</code></br>
  1000. <em>
  1001. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1002. AkeylessAuthSecretRef
  1003. </a>
  1004. </em>
  1005. </td>
  1006. <td>
  1007. <em>(Optional)</em>
  1008. <p>Reference to a Secret that contains the details
  1009. to authenticate with Akeyless.</p>
  1010. </td>
  1011. </tr>
  1012. <tr>
  1013. <td>
  1014. <code>kubernetesAuth</code></br>
  1015. <em>
  1016. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1017. AkeylessKubernetesAuth
  1018. </a>
  1019. </em>
  1020. </td>
  1021. <td>
  1022. <em>(Optional)</em>
  1023. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1024. token stored in the named Secret resource.</p>
  1025. </td>
  1026. </tr>
  1027. </tbody>
  1028. </table>
  1029. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1030. </h3>
  1031. <p>
  1032. (<em>Appears on:</em>
  1033. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1034. </p>
  1035. <p>
  1036. <p>AkeylessAuthSecretRef
  1037. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1038. </p>
  1039. <table>
  1040. <thead>
  1041. <tr>
  1042. <th>Field</th>
  1043. <th>Description</th>
  1044. </tr>
  1045. </thead>
  1046. <tbody>
  1047. <tr>
  1048. <td>
  1049. <code>accessID</code></br>
  1050. <em>
  1051. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1052. </em>
  1053. </td>
  1054. <td>
  1055. <p>The SecretAccessID is used for authentication</p>
  1056. </td>
  1057. </tr>
  1058. <tr>
  1059. <td>
  1060. <code>accessType</code></br>
  1061. <em>
  1062. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1063. </em>
  1064. </td>
  1065. <td>
  1066. </td>
  1067. </tr>
  1068. <tr>
  1069. <td>
  1070. <code>accessTypeParam</code></br>
  1071. <em>
  1072. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1073. </em>
  1074. </td>
  1075. <td>
  1076. </td>
  1077. </tr>
  1078. </tbody>
  1079. </table>
  1080. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1081. </h3>
  1082. <p>
  1083. (<em>Appears on:</em>
  1084. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1085. </p>
  1086. <p>
  1087. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1088. </p>
  1089. <table>
  1090. <thead>
  1091. <tr>
  1092. <th>Field</th>
  1093. <th>Description</th>
  1094. </tr>
  1095. </thead>
  1096. <tbody>
  1097. <tr>
  1098. <td>
  1099. <code>accessID</code></br>
  1100. <em>
  1101. string
  1102. </em>
  1103. </td>
  1104. <td>
  1105. <p>the Akeyless Kubernetes auth-method access-id</p>
  1106. </td>
  1107. </tr>
  1108. <tr>
  1109. <td>
  1110. <code>k8sConfName</code></br>
  1111. <em>
  1112. string
  1113. </em>
  1114. </td>
  1115. <td>
  1116. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1117. </td>
  1118. </tr>
  1119. <tr>
  1120. <td>
  1121. <code>serviceAccountRef</code></br>
  1122. <em>
  1123. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1124. </em>
  1125. </td>
  1126. <td>
  1127. <em>(Optional)</em>
  1128. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1129. If the service account is specified, the service account secret token JWT will be used
  1130. for authenticating with Akeyless. If the service account selector is not supplied,
  1131. the secretRef will be used instead.</p>
  1132. </td>
  1133. </tr>
  1134. <tr>
  1135. <td>
  1136. <code>secretRef</code></br>
  1137. <em>
  1138. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1139. </em>
  1140. </td>
  1141. <td>
  1142. <em>(Optional)</em>
  1143. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1144. for authenticating with Akeyless. If a name is specified without a key,
  1145. <code>token</code> is the default. If one is not specified, the one bound to
  1146. the controller will be used.</p>
  1147. </td>
  1148. </tr>
  1149. </tbody>
  1150. </table>
  1151. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1152. </h3>
  1153. <p>
  1154. (<em>Appears on:</em>
  1155. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1156. </p>
  1157. <p>
  1158. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1159. </p>
  1160. <table>
  1161. <thead>
  1162. <tr>
  1163. <th>Field</th>
  1164. <th>Description</th>
  1165. </tr>
  1166. </thead>
  1167. <tbody>
  1168. <tr>
  1169. <td>
  1170. <code>akeylessGWApiURL</code></br>
  1171. <em>
  1172. string
  1173. </em>
  1174. </td>
  1175. <td>
  1176. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1177. </td>
  1178. </tr>
  1179. <tr>
  1180. <td>
  1181. <code>authSecretRef</code></br>
  1182. <em>
  1183. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1184. AkeylessAuth
  1185. </a>
  1186. </em>
  1187. </td>
  1188. <td>
  1189. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1190. </td>
  1191. </tr>
  1192. </tbody>
  1193. </table>
  1194. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1195. </h3>
  1196. <p>
  1197. (<em>Appears on:</em>
  1198. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1199. </p>
  1200. <p>
  1201. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1202. </p>
  1203. <table>
  1204. <thead>
  1205. <tr>
  1206. <th>Field</th>
  1207. <th>Description</th>
  1208. </tr>
  1209. </thead>
  1210. <tbody>
  1211. <tr>
  1212. <td>
  1213. <code>secretRef</code></br>
  1214. <em>
  1215. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1216. AlibabaAuthSecretRef
  1217. </a>
  1218. </em>
  1219. </td>
  1220. <td>
  1221. </td>
  1222. </tr>
  1223. </tbody>
  1224. </table>
  1225. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1226. </h3>
  1227. <p>
  1228. (<em>Appears on:</em>
  1229. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1230. </p>
  1231. <p>
  1232. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1233. </p>
  1234. <table>
  1235. <thead>
  1236. <tr>
  1237. <th>Field</th>
  1238. <th>Description</th>
  1239. </tr>
  1240. </thead>
  1241. <tbody>
  1242. <tr>
  1243. <td>
  1244. <code>accessKeyIDSecretRef</code></br>
  1245. <em>
  1246. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1247. </em>
  1248. </td>
  1249. <td>
  1250. <p>The AccessKeyID is used for authentication</p>
  1251. </td>
  1252. </tr>
  1253. <tr>
  1254. <td>
  1255. <code>accessKeySecretSecretRef</code></br>
  1256. <em>
  1257. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1258. </em>
  1259. </td>
  1260. <td>
  1261. <p>The AccessKeySecret is used for authentication</p>
  1262. </td>
  1263. </tr>
  1264. </tbody>
  1265. </table>
  1266. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1267. </h3>
  1268. <p>
  1269. (<em>Appears on:</em>
  1270. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1271. </p>
  1272. <p>
  1273. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1274. </p>
  1275. <table>
  1276. <thead>
  1277. <tr>
  1278. <th>Field</th>
  1279. <th>Description</th>
  1280. </tr>
  1281. </thead>
  1282. <tbody>
  1283. <tr>
  1284. <td>
  1285. <code>auth</code></br>
  1286. <em>
  1287. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1288. AlibabaAuth
  1289. </a>
  1290. </em>
  1291. </td>
  1292. <td>
  1293. </td>
  1294. </tr>
  1295. <tr>
  1296. <td>
  1297. <code>endpoint</code></br>
  1298. <em>
  1299. string
  1300. </em>
  1301. </td>
  1302. <td>
  1303. <em>(Optional)</em>
  1304. </td>
  1305. </tr>
  1306. <tr>
  1307. <td>
  1308. <code>regionID</code></br>
  1309. <em>
  1310. string
  1311. </em>
  1312. </td>
  1313. <td>
  1314. <p>Alibaba Region to be used for the provider</p>
  1315. </td>
  1316. </tr>
  1317. </tbody>
  1318. </table>
  1319. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1320. (<code>string</code> alias)</p></h3>
  1321. <p>
  1322. (<em>Appears on:</em>
  1323. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1324. </p>
  1325. <p>
  1326. <p>AuthType describes how to authenticate to the Azure Keyvault
  1327. Only one of the following auth types may be specified.
  1328. If none of the following auth type is specified, the default one
  1329. is ServicePrincipal.</p>
  1330. </p>
  1331. <table>
  1332. <thead>
  1333. <tr>
  1334. <th>Value</th>
  1335. <th>Description</th>
  1336. </tr>
  1337. </thead>
  1338. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1339. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1340. </td>
  1341. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1342. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1343. </td>
  1344. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1345. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1346. </td>
  1347. </tr></tbody>
  1348. </table>
  1349. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1350. (<code>string</code> alias)</p></h3>
  1351. <p>
  1352. (<em>Appears on:</em>
  1353. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1354. </p>
  1355. <p>
  1356. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1357. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1358. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1359. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1360. </p>
  1361. <table>
  1362. <thead>
  1363. <tr>
  1364. <th>Value</th>
  1365. <th>Description</th>
  1366. </tr>
  1367. </thead>
  1368. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1369. <td></td>
  1370. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1371. <td></td>
  1372. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1373. <td></td>
  1374. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1375. <td></td>
  1376. </tr></tbody>
  1377. </table>
  1378. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1379. </h3>
  1380. <p>
  1381. (<em>Appears on:</em>
  1382. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1383. </p>
  1384. <p>
  1385. <p>Configuration used to authenticate with Azure.</p>
  1386. </p>
  1387. <table>
  1388. <thead>
  1389. <tr>
  1390. <th>Field</th>
  1391. <th>Description</th>
  1392. </tr>
  1393. </thead>
  1394. <tbody>
  1395. <tr>
  1396. <td>
  1397. <code>clientId</code></br>
  1398. <em>
  1399. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1400. </em>
  1401. </td>
  1402. <td>
  1403. <em>(Optional)</em>
  1404. <p>The Azure clientId of the service principle used for authentication.</p>
  1405. </td>
  1406. </tr>
  1407. <tr>
  1408. <td>
  1409. <code>clientSecret</code></br>
  1410. <em>
  1411. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1412. </em>
  1413. </td>
  1414. <td>
  1415. <em>(Optional)</em>
  1416. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1417. </td>
  1418. </tr>
  1419. </tbody>
  1420. </table>
  1421. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1422. </h3>
  1423. <p>
  1424. (<em>Appears on:</em>
  1425. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1426. </p>
  1427. <p>
  1428. <p>Configures an store to sync secrets using Azure KV.</p>
  1429. </p>
  1430. <table>
  1431. <thead>
  1432. <tr>
  1433. <th>Field</th>
  1434. <th>Description</th>
  1435. </tr>
  1436. </thead>
  1437. <tbody>
  1438. <tr>
  1439. <td>
  1440. <code>authType</code></br>
  1441. <em>
  1442. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1443. AzureAuthType
  1444. </a>
  1445. </em>
  1446. </td>
  1447. <td>
  1448. <em>(Optional)</em>
  1449. <p>Auth type defines how to authenticate to the keyvault service.
  1450. Valid values are:
  1451. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1452. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1453. </td>
  1454. </tr>
  1455. <tr>
  1456. <td>
  1457. <code>vaultUrl</code></br>
  1458. <em>
  1459. string
  1460. </em>
  1461. </td>
  1462. <td>
  1463. <p>Vault Url from which the secrets to be fetched from.</p>
  1464. </td>
  1465. </tr>
  1466. <tr>
  1467. <td>
  1468. <code>tenantId</code></br>
  1469. <em>
  1470. string
  1471. </em>
  1472. </td>
  1473. <td>
  1474. <em>(Optional)</em>
  1475. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1476. </td>
  1477. </tr>
  1478. <tr>
  1479. <td>
  1480. <code>environmentType</code></br>
  1481. <em>
  1482. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1483. AzureEnvironmentType
  1484. </a>
  1485. </em>
  1486. </td>
  1487. <td>
  1488. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1489. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1490. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1491. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1492. </td>
  1493. </tr>
  1494. <tr>
  1495. <td>
  1496. <code>authSecretRef</code></br>
  1497. <em>
  1498. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1499. AzureKVAuth
  1500. </a>
  1501. </em>
  1502. </td>
  1503. <td>
  1504. <em>(Optional)</em>
  1505. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1506. </td>
  1507. </tr>
  1508. <tr>
  1509. <td>
  1510. <code>serviceAccountRef</code></br>
  1511. <em>
  1512. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1513. </em>
  1514. </td>
  1515. <td>
  1516. <em>(Optional)</em>
  1517. <p>ServiceAccountRef specified the service account
  1518. that should be used when authenticating with WorkloadIdentity.</p>
  1519. </td>
  1520. </tr>
  1521. <tr>
  1522. <td>
  1523. <code>identityId</code></br>
  1524. <em>
  1525. string
  1526. </em>
  1527. </td>
  1528. <td>
  1529. <em>(Optional)</em>
  1530. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1531. </td>
  1532. </tr>
  1533. </tbody>
  1534. </table>
  1535. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1536. </h3>
  1537. <p>
  1538. (<em>Appears on:</em>
  1539. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1540. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1541. </p>
  1542. <p>
  1543. <p>Used to provide custom certificate authority (CA) certificates
  1544. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1545. that contains a PEM-encoded certificate.</p>
  1546. </p>
  1547. <table>
  1548. <thead>
  1549. <tr>
  1550. <th>Field</th>
  1551. <th>Description</th>
  1552. </tr>
  1553. </thead>
  1554. <tbody>
  1555. <tr>
  1556. <td>
  1557. <code>type</code></br>
  1558. <em>
  1559. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1560. CAProviderType
  1561. </a>
  1562. </em>
  1563. </td>
  1564. <td>
  1565. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1566. </td>
  1567. </tr>
  1568. <tr>
  1569. <td>
  1570. <code>name</code></br>
  1571. <em>
  1572. string
  1573. </em>
  1574. </td>
  1575. <td>
  1576. <p>The name of the object located at the provider type.</p>
  1577. </td>
  1578. </tr>
  1579. <tr>
  1580. <td>
  1581. <code>key</code></br>
  1582. <em>
  1583. string
  1584. </em>
  1585. </td>
  1586. <td>
  1587. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1588. </td>
  1589. </tr>
  1590. <tr>
  1591. <td>
  1592. <code>namespace</code></br>
  1593. <em>
  1594. string
  1595. </em>
  1596. </td>
  1597. <td>
  1598. <em>(Optional)</em>
  1599. <p>The namespace the Provider type is in.
  1600. Can only be defined when used in a ClusterSecretStore.</p>
  1601. </td>
  1602. </tr>
  1603. </tbody>
  1604. </table>
  1605. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1606. (<code>string</code> alias)</p></h3>
  1607. <p>
  1608. (<em>Appears on:</em>
  1609. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  1610. </p>
  1611. <p>
  1612. </p>
  1613. <table>
  1614. <thead>
  1615. <tr>
  1616. <th>Value</th>
  1617. <th>Description</th>
  1618. </tr>
  1619. </thead>
  1620. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1621. <td></td>
  1622. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1623. <td></td>
  1624. </tr></tbody>
  1625. </table>
  1626. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  1627. </h3>
  1628. <p>
  1629. (<em>Appears on:</em>
  1630. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  1631. </p>
  1632. <p>
  1633. </p>
  1634. <table>
  1635. <thead>
  1636. <tr>
  1637. <th>Field</th>
  1638. <th>Description</th>
  1639. </tr>
  1640. </thead>
  1641. <tbody>
  1642. <tr>
  1643. <td>
  1644. <code>clientCert</code></br>
  1645. <em>
  1646. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1647. </em>
  1648. </td>
  1649. <td>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td>
  1654. <code>clientKey</code></br>
  1655. <em>
  1656. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1657. </em>
  1658. </td>
  1659. <td>
  1660. </td>
  1661. </tr>
  1662. </tbody>
  1663. </table>
  1664. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  1665. </h3>
  1666. <p>
  1667. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  1668. </p>
  1669. <table>
  1670. <thead>
  1671. <tr>
  1672. <th>Field</th>
  1673. <th>Description</th>
  1674. </tr>
  1675. </thead>
  1676. <tbody>
  1677. <tr>
  1678. <td>
  1679. <code>metadata</code></br>
  1680. <em>
  1681. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1682. Kubernetes meta/v1.ObjectMeta
  1683. </a>
  1684. </em>
  1685. </td>
  1686. <td>
  1687. Refer to the Kubernetes API documentation for the fields of the
  1688. <code>metadata</code> field.
  1689. </td>
  1690. </tr>
  1691. <tr>
  1692. <td>
  1693. <code>spec</code></br>
  1694. <em>
  1695. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  1696. ClusterExternalSecretSpec
  1697. </a>
  1698. </em>
  1699. </td>
  1700. <td>
  1701. <br/>
  1702. <br/>
  1703. <table>
  1704. <tr>
  1705. <td>
  1706. <code>externalSecretSpec</code></br>
  1707. <em>
  1708. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1709. ExternalSecretSpec
  1710. </a>
  1711. </em>
  1712. </td>
  1713. <td>
  1714. <p>The spec for the ExternalSecrets to be created</p>
  1715. </td>
  1716. </tr>
  1717. <tr>
  1718. <td>
  1719. <code>externalSecretName</code></br>
  1720. <em>
  1721. string
  1722. </em>
  1723. </td>
  1724. <td>
  1725. <em>(Optional)</em>
  1726. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1727. </td>
  1728. </tr>
  1729. <tr>
  1730. <td>
  1731. <code>namespaceSelector</code></br>
  1732. <em>
  1733. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1734. Kubernetes meta/v1.LabelSelector
  1735. </a>
  1736. </em>
  1737. </td>
  1738. <td>
  1739. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1740. </td>
  1741. </tr>
  1742. <tr>
  1743. <td>
  1744. <code>refreshTime</code></br>
  1745. <em>
  1746. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1747. Kubernetes meta/v1.Duration
  1748. </a>
  1749. </em>
  1750. </td>
  1751. <td>
  1752. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1753. </td>
  1754. </tr>
  1755. </table>
  1756. </td>
  1757. </tr>
  1758. <tr>
  1759. <td>
  1760. <code>status</code></br>
  1761. <em>
  1762. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  1763. ClusterExternalSecretStatus
  1764. </a>
  1765. </em>
  1766. </td>
  1767. <td>
  1768. </td>
  1769. </tr>
  1770. </tbody>
  1771. </table>
  1772. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  1773. (<code>string</code> alias)</p></h3>
  1774. <p>
  1775. (<em>Appears on:</em>
  1776. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  1777. </p>
  1778. <p>
  1779. </p>
  1780. <table>
  1781. <thead>
  1782. <tr>
  1783. <th>Value</th>
  1784. <th>Description</th>
  1785. </tr>
  1786. </thead>
  1787. <tbody><tr><td><p>&#34;NotReady&#34;</p></td>
  1788. <td></td>
  1789. </tr><tr><td><p>&#34;PartiallyReady&#34;</p></td>
  1790. <td></td>
  1791. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1792. <td></td>
  1793. </tr></tbody>
  1794. </table>
  1795. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  1796. </h3>
  1797. <p>
  1798. (<em>Appears on:</em>
  1799. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1800. </p>
  1801. <p>
  1802. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  1803. </p>
  1804. <table>
  1805. <thead>
  1806. <tr>
  1807. <th>Field</th>
  1808. <th>Description</th>
  1809. </tr>
  1810. </thead>
  1811. <tbody>
  1812. <tr>
  1813. <td>
  1814. <code>namespace</code></br>
  1815. <em>
  1816. string
  1817. </em>
  1818. </td>
  1819. <td>
  1820. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  1821. </td>
  1822. </tr>
  1823. <tr>
  1824. <td>
  1825. <code>reason</code></br>
  1826. <em>
  1827. string
  1828. </em>
  1829. </td>
  1830. <td>
  1831. <em>(Optional)</em>
  1832. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  1833. </td>
  1834. </tr>
  1835. </tbody>
  1836. </table>
  1837. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  1838. </h3>
  1839. <p>
  1840. (<em>Appears on:</em>
  1841. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1842. </p>
  1843. <p>
  1844. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  1845. </p>
  1846. <table>
  1847. <thead>
  1848. <tr>
  1849. <th>Field</th>
  1850. <th>Description</th>
  1851. </tr>
  1852. </thead>
  1853. <tbody>
  1854. <tr>
  1855. <td>
  1856. <code>externalSecretSpec</code></br>
  1857. <em>
  1858. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1859. ExternalSecretSpec
  1860. </a>
  1861. </em>
  1862. </td>
  1863. <td>
  1864. <p>The spec for the ExternalSecrets to be created</p>
  1865. </td>
  1866. </tr>
  1867. <tr>
  1868. <td>
  1869. <code>externalSecretName</code></br>
  1870. <em>
  1871. string
  1872. </em>
  1873. </td>
  1874. <td>
  1875. <em>(Optional)</em>
  1876. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1877. </td>
  1878. </tr>
  1879. <tr>
  1880. <td>
  1881. <code>namespaceSelector</code></br>
  1882. <em>
  1883. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1884. Kubernetes meta/v1.LabelSelector
  1885. </a>
  1886. </em>
  1887. </td>
  1888. <td>
  1889. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1890. </td>
  1891. </tr>
  1892. <tr>
  1893. <td>
  1894. <code>refreshTime</code></br>
  1895. <em>
  1896. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1897. Kubernetes meta/v1.Duration
  1898. </a>
  1899. </em>
  1900. </td>
  1901. <td>
  1902. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1903. </td>
  1904. </tr>
  1905. </tbody>
  1906. </table>
  1907. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  1908. </h3>
  1909. <p>
  1910. (<em>Appears on:</em>
  1911. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1912. </p>
  1913. <p>
  1914. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  1915. </p>
  1916. <table>
  1917. <thead>
  1918. <tr>
  1919. <th>Field</th>
  1920. <th>Description</th>
  1921. </tr>
  1922. </thead>
  1923. <tbody>
  1924. <tr>
  1925. <td>
  1926. <code>failedNamespaces</code></br>
  1927. <em>
  1928. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  1929. []ClusterExternalSecretNamespaceFailure
  1930. </a>
  1931. </em>
  1932. </td>
  1933. <td>
  1934. <em>(Optional)</em>
  1935. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  1936. </td>
  1937. </tr>
  1938. <tr>
  1939. <td>
  1940. <code>provisionedNamespaces</code></br>
  1941. <em>
  1942. []string
  1943. </em>
  1944. </td>
  1945. <td>
  1946. <em>(Optional)</em>
  1947. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  1948. </td>
  1949. </tr>
  1950. <tr>
  1951. <td>
  1952. <code>conditions</code></br>
  1953. <em>
  1954. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  1955. []ClusterExternalSecretStatusCondition
  1956. </a>
  1957. </em>
  1958. </td>
  1959. <td>
  1960. <em>(Optional)</em>
  1961. </td>
  1962. </tr>
  1963. </tbody>
  1964. </table>
  1965. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  1966. </h3>
  1967. <p>
  1968. (<em>Appears on:</em>
  1969. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1970. </p>
  1971. <p>
  1972. </p>
  1973. <table>
  1974. <thead>
  1975. <tr>
  1976. <th>Field</th>
  1977. <th>Description</th>
  1978. </tr>
  1979. </thead>
  1980. <tbody>
  1981. <tr>
  1982. <td>
  1983. <code>type</code></br>
  1984. <em>
  1985. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  1986. ClusterExternalSecretConditionType
  1987. </a>
  1988. </em>
  1989. </td>
  1990. <td>
  1991. </td>
  1992. </tr>
  1993. <tr>
  1994. <td>
  1995. <code>status</code></br>
  1996. <em>
  1997. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  1998. Kubernetes core/v1.ConditionStatus
  1999. </a>
  2000. </em>
  2001. </td>
  2002. <td>
  2003. </td>
  2004. </tr>
  2005. <tr>
  2006. <td>
  2007. <code>message</code></br>
  2008. <em>
  2009. string
  2010. </em>
  2011. </td>
  2012. <td>
  2013. <em>(Optional)</em>
  2014. </td>
  2015. </tr>
  2016. </tbody>
  2017. </table>
  2018. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2019. </h3>
  2020. <p>
  2021. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2022. </p>
  2023. <table>
  2024. <thead>
  2025. <tr>
  2026. <th>Field</th>
  2027. <th>Description</th>
  2028. </tr>
  2029. </thead>
  2030. <tbody>
  2031. <tr>
  2032. <td>
  2033. <code>metadata</code></br>
  2034. <em>
  2035. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2036. Kubernetes meta/v1.ObjectMeta
  2037. </a>
  2038. </em>
  2039. </td>
  2040. <td>
  2041. Refer to the Kubernetes API documentation for the fields of the
  2042. <code>metadata</code> field.
  2043. </td>
  2044. </tr>
  2045. <tr>
  2046. <td>
  2047. <code>spec</code></br>
  2048. <em>
  2049. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2050. SecretStoreSpec
  2051. </a>
  2052. </em>
  2053. </td>
  2054. <td>
  2055. <br/>
  2056. <br/>
  2057. <table>
  2058. <tr>
  2059. <td>
  2060. <code>controller</code></br>
  2061. <em>
  2062. string
  2063. </em>
  2064. </td>
  2065. <td>
  2066. <em>(Optional)</em>
  2067. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  2068. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  2069. </td>
  2070. </tr>
  2071. <tr>
  2072. <td>
  2073. <code>provider</code></br>
  2074. <em>
  2075. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2076. SecretStoreProvider
  2077. </a>
  2078. </em>
  2079. </td>
  2080. <td>
  2081. <p>Used to configure the provider. Only one provider may be set</p>
  2082. </td>
  2083. </tr>
  2084. <tr>
  2085. <td>
  2086. <code>retrySettings</code></br>
  2087. <em>
  2088. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2089. SecretStoreRetrySettings
  2090. </a>
  2091. </em>
  2092. </td>
  2093. <td>
  2094. <em>(Optional)</em>
  2095. <p>Used to configure http retries if failed</p>
  2096. </td>
  2097. </tr>
  2098. <tr>
  2099. <td>
  2100. <code>refreshInterval</code></br>
  2101. <em>
  2102. int
  2103. </em>
  2104. </td>
  2105. <td>
  2106. <em>(Optional)</em>
  2107. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2108. </td>
  2109. </tr>
  2110. <tr>
  2111. <td>
  2112. <code>conditions</code></br>
  2113. <em>
  2114. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2115. []ClusterSecretStoreCondition
  2116. </a>
  2117. </em>
  2118. </td>
  2119. <td>
  2120. <em>(Optional)</em>
  2121. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2122. </td>
  2123. </tr>
  2124. </table>
  2125. </td>
  2126. </tr>
  2127. <tr>
  2128. <td>
  2129. <code>status</code></br>
  2130. <em>
  2131. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2132. SecretStoreStatus
  2133. </a>
  2134. </em>
  2135. </td>
  2136. <td>
  2137. </td>
  2138. </tr>
  2139. </tbody>
  2140. </table>
  2141. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2142. </h3>
  2143. <p>
  2144. (<em>Appears on:</em>
  2145. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2146. </p>
  2147. <p>
  2148. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2149. for a ClusterSecretStore instance.</p>
  2150. </p>
  2151. <table>
  2152. <thead>
  2153. <tr>
  2154. <th>Field</th>
  2155. <th>Description</th>
  2156. </tr>
  2157. </thead>
  2158. <tbody>
  2159. <tr>
  2160. <td>
  2161. <code>namespaceSelector</code></br>
  2162. <em>
  2163. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  2164. Kubernetes meta/v1.LabelSelector
  2165. </a>
  2166. </em>
  2167. </td>
  2168. <td>
  2169. <em>(Optional)</em>
  2170. <p>Choose namespace using a labelSelector</p>
  2171. </td>
  2172. </tr>
  2173. <tr>
  2174. <td>
  2175. <code>namespaces</code></br>
  2176. <em>
  2177. []string
  2178. </em>
  2179. </td>
  2180. <td>
  2181. <p>Choose namespaces by name</p>
  2182. </td>
  2183. </tr>
  2184. </tbody>
  2185. </table>
  2186. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  2187. </h3>
  2188. <p>
  2189. (<em>Appears on:</em>
  2190. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  2191. </p>
  2192. <p>
  2193. </p>
  2194. <table>
  2195. <thead>
  2196. <tr>
  2197. <th>Field</th>
  2198. <th>Description</th>
  2199. </tr>
  2200. </thead>
  2201. <tbody>
  2202. <tr>
  2203. <td>
  2204. <code>secretRef</code></br>
  2205. <em>
  2206. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  2207. DopplerAuthSecretRef
  2208. </a>
  2209. </em>
  2210. </td>
  2211. <td>
  2212. </td>
  2213. </tr>
  2214. </tbody>
  2215. </table>
  2216. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  2217. </h3>
  2218. <p>
  2219. (<em>Appears on:</em>
  2220. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  2221. </p>
  2222. <p>
  2223. </p>
  2224. <table>
  2225. <thead>
  2226. <tr>
  2227. <th>Field</th>
  2228. <th>Description</th>
  2229. </tr>
  2230. </thead>
  2231. <tbody>
  2232. <tr>
  2233. <td>
  2234. <code>dopplerToken</code></br>
  2235. <em>
  2236. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2237. </em>
  2238. </td>
  2239. <td>
  2240. <p>The DopplerToken is used for authentication.
  2241. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  2242. The Key attribute defaults to dopplerToken if not specified.</p>
  2243. </td>
  2244. </tr>
  2245. </tbody>
  2246. </table>
  2247. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  2248. </h3>
  2249. <p>
  2250. (<em>Appears on:</em>
  2251. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2252. </p>
  2253. <p>
  2254. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  2255. Project and Config are required if not using a Service Token.</p>
  2256. </p>
  2257. <table>
  2258. <thead>
  2259. <tr>
  2260. <th>Field</th>
  2261. <th>Description</th>
  2262. </tr>
  2263. </thead>
  2264. <tbody>
  2265. <tr>
  2266. <td>
  2267. <code>auth</code></br>
  2268. <em>
  2269. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  2270. DopplerAuth
  2271. </a>
  2272. </em>
  2273. </td>
  2274. <td>
  2275. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  2276. </td>
  2277. </tr>
  2278. <tr>
  2279. <td>
  2280. <code>project</code></br>
  2281. <em>
  2282. string
  2283. </em>
  2284. </td>
  2285. <td>
  2286. <em>(Optional)</em>
  2287. <p>Doppler project (required if not using a Service Token)</p>
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td>
  2292. <code>config</code></br>
  2293. <em>
  2294. string
  2295. </em>
  2296. </td>
  2297. <td>
  2298. <em>(Optional)</em>
  2299. <p>Doppler config (required if not using a Service Token)</p>
  2300. </td>
  2301. </tr>
  2302. <tr>
  2303. <td>
  2304. <code>nameTransformer</code></br>
  2305. <em>
  2306. string
  2307. </em>
  2308. </td>
  2309. <td>
  2310. <em>(Optional)</em>
  2311. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  2312. </td>
  2313. </tr>
  2314. <tr>
  2315. <td>
  2316. <code>format</code></br>
  2317. <em>
  2318. string
  2319. </em>
  2320. </td>
  2321. <td>
  2322. <em>(Optional)</em>
  2323. <p>Format enables the downloading of secrets as a file (string)</p>
  2324. </td>
  2325. </tr>
  2326. </tbody>
  2327. </table>
  2328. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  2329. </h3>
  2330. <p>
  2331. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  2332. </p>
  2333. <table>
  2334. <thead>
  2335. <tr>
  2336. <th>Field</th>
  2337. <th>Description</th>
  2338. </tr>
  2339. </thead>
  2340. <tbody>
  2341. <tr>
  2342. <td>
  2343. <code>metadata</code></br>
  2344. <em>
  2345. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2346. Kubernetes meta/v1.ObjectMeta
  2347. </a>
  2348. </em>
  2349. </td>
  2350. <td>
  2351. Refer to the Kubernetes API documentation for the fields of the
  2352. <code>metadata</code> field.
  2353. </td>
  2354. </tr>
  2355. <tr>
  2356. <td>
  2357. <code>spec</code></br>
  2358. <em>
  2359. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2360. ExternalSecretSpec
  2361. </a>
  2362. </em>
  2363. </td>
  2364. <td>
  2365. <br/>
  2366. <br/>
  2367. <table>
  2368. <tr>
  2369. <td>
  2370. <code>secretStoreRef</code></br>
  2371. <em>
  2372. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2373. SecretStoreRef
  2374. </a>
  2375. </em>
  2376. </td>
  2377. <td>
  2378. <em>(Optional)</em>
  2379. </td>
  2380. </tr>
  2381. <tr>
  2382. <td>
  2383. <code>target</code></br>
  2384. <em>
  2385. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2386. ExternalSecretTarget
  2387. </a>
  2388. </em>
  2389. </td>
  2390. <td>
  2391. <em>(Optional)</em>
  2392. </td>
  2393. </tr>
  2394. <tr>
  2395. <td>
  2396. <code>refreshInterval</code></br>
  2397. <em>
  2398. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2399. Kubernetes meta/v1.Duration
  2400. </a>
  2401. </em>
  2402. </td>
  2403. <td>
  2404. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2405. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  2406. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2407. </td>
  2408. </tr>
  2409. <tr>
  2410. <td>
  2411. <code>data</code></br>
  2412. <em>
  2413. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2414. []ExternalSecretData
  2415. </a>
  2416. </em>
  2417. </td>
  2418. <td>
  2419. <em>(Optional)</em>
  2420. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2421. </td>
  2422. </tr>
  2423. <tr>
  2424. <td>
  2425. <code>dataFrom</code></br>
  2426. <em>
  2427. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2428. []ExternalSecretDataFromRemoteRef
  2429. </a>
  2430. </em>
  2431. </td>
  2432. <td>
  2433. <em>(Optional)</em>
  2434. <p>DataFrom is used to fetch all properties from a specific Provider data
  2435. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2436. </td>
  2437. </tr>
  2438. </table>
  2439. </td>
  2440. </tr>
  2441. <tr>
  2442. <td>
  2443. <code>status</code></br>
  2444. <em>
  2445. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  2446. ExternalSecretStatus
  2447. </a>
  2448. </em>
  2449. </td>
  2450. <td>
  2451. </td>
  2452. </tr>
  2453. </tbody>
  2454. </table>
  2455. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  2456. (<code>string</code> alias)</p></h3>
  2457. <p>
  2458. (<em>Appears on:</em>
  2459. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  2460. </p>
  2461. <p>
  2462. </p>
  2463. <table>
  2464. <thead>
  2465. <tr>
  2466. <th>Value</th>
  2467. <th>Description</th>
  2468. </tr>
  2469. </thead>
  2470. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  2471. <td></td>
  2472. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  2473. <td></td>
  2474. </tr></tbody>
  2475. </table>
  2476. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  2477. (<code>string</code> alias)</p></h3>
  2478. <p>
  2479. (<em>Appears on:</em>
  2480. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2481. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2482. </p>
  2483. <p>
  2484. </p>
  2485. <table>
  2486. <thead>
  2487. <tr>
  2488. <th>Value</th>
  2489. <th>Description</th>
  2490. </tr>
  2491. </thead>
  2492. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  2493. <td></td>
  2494. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  2495. <td></td>
  2496. </tr></tbody>
  2497. </table>
  2498. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  2499. (<code>string</code> alias)</p></h3>
  2500. <p>
  2501. (<em>Appears on:</em>
  2502. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2503. </p>
  2504. <p>
  2505. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  2506. </p>
  2507. <table>
  2508. <thead>
  2509. <tr>
  2510. <th>Value</th>
  2511. <th>Description</th>
  2512. </tr>
  2513. </thead>
  2514. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  2515. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  2516. </td>
  2517. </tr><tr><td><p>&#34;None&#34;</p></td>
  2518. <td><p>None does not create a Secret (future use with injector).</p>
  2519. </td>
  2520. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  2521. <td><p>Orphan creates the Secret and does not set the ownerReference.
  2522. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  2523. </td>
  2524. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  2525. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  2526. </td>
  2527. </tr></tbody>
  2528. </table>
  2529. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  2530. </h3>
  2531. <p>
  2532. (<em>Appears on:</em>
  2533. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2534. </p>
  2535. <p>
  2536. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  2537. </p>
  2538. <table>
  2539. <thead>
  2540. <tr>
  2541. <th>Field</th>
  2542. <th>Description</th>
  2543. </tr>
  2544. </thead>
  2545. <tbody>
  2546. <tr>
  2547. <td>
  2548. <code>secretKey</code></br>
  2549. <em>
  2550. string
  2551. </em>
  2552. </td>
  2553. <td>
  2554. <p>SecretKey defines the key in which the controller stores
  2555. the value. This is the key in the Kind=Secret</p>
  2556. </td>
  2557. </tr>
  2558. <tr>
  2559. <td>
  2560. <code>remoteRef</code></br>
  2561. <em>
  2562. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2563. ExternalSecretDataRemoteRef
  2564. </a>
  2565. </em>
  2566. </td>
  2567. <td>
  2568. <p>RemoteRef points to the remote secret and defines
  2569. which secret (version/property/..) to fetch.</p>
  2570. </td>
  2571. </tr>
  2572. <tr>
  2573. <td>
  2574. <code>sourceRef</code></br>
  2575. <em>
  2576. <a href="#external-secrets.io/v1beta1.SourceRef">
  2577. SourceRef
  2578. </a>
  2579. </em>
  2580. </td>
  2581. <td>
  2582. <p>SourceRef allows you to override the source
  2583. from which the value will pulled from.</p>
  2584. </td>
  2585. </tr>
  2586. </tbody>
  2587. </table>
  2588. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  2589. </h3>
  2590. <p>
  2591. (<em>Appears on:</em>
  2592. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2593. </p>
  2594. <p>
  2595. </p>
  2596. <table>
  2597. <thead>
  2598. <tr>
  2599. <th>Field</th>
  2600. <th>Description</th>
  2601. </tr>
  2602. </thead>
  2603. <tbody>
  2604. <tr>
  2605. <td>
  2606. <code>extract</code></br>
  2607. <em>
  2608. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2609. ExternalSecretDataRemoteRef
  2610. </a>
  2611. </em>
  2612. </td>
  2613. <td>
  2614. <em>(Optional)</em>
  2615. <p>Used to extract multiple key/value pairs from one secret
  2616. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2617. </td>
  2618. </tr>
  2619. <tr>
  2620. <td>
  2621. <code>find</code></br>
  2622. <em>
  2623. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  2624. ExternalSecretFind
  2625. </a>
  2626. </em>
  2627. </td>
  2628. <td>
  2629. <em>(Optional)</em>
  2630. <p>Used to find secrets based on tags or regular expressions
  2631. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2632. </td>
  2633. </tr>
  2634. <tr>
  2635. <td>
  2636. <code>rewrite</code></br>
  2637. <em>
  2638. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  2639. []ExternalSecretRewrite
  2640. </a>
  2641. </em>
  2642. </td>
  2643. <td>
  2644. <em>(Optional)</em>
  2645. <p>Used to rewrite secret Keys after getting them from the secret Provider
  2646. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  2647. </td>
  2648. </tr>
  2649. <tr>
  2650. <td>
  2651. <code>sourceRef</code></br>
  2652. <em>
  2653. <a href="#external-secrets.io/v1beta1.SourceRef">
  2654. SourceRef
  2655. </a>
  2656. </em>
  2657. </td>
  2658. <td>
  2659. <p>SourceRef points to a store or generator
  2660. which contains secret values ready to use.
  2661. Use this in combination with Extract or Find pull values out of
  2662. a specific SecretStore.
  2663. When sourceRef points to a generator Extract or Find is not supported.
  2664. The generator returns a static map of values</p>
  2665. </td>
  2666. </tr>
  2667. </tbody>
  2668. </table>
  2669. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  2670. </h3>
  2671. <p>
  2672. (<em>Appears on:</em>
  2673. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  2674. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2675. </p>
  2676. <p>
  2677. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  2678. </p>
  2679. <table>
  2680. <thead>
  2681. <tr>
  2682. <th>Field</th>
  2683. <th>Description</th>
  2684. </tr>
  2685. </thead>
  2686. <tbody>
  2687. <tr>
  2688. <td>
  2689. <code>key</code></br>
  2690. <em>
  2691. string
  2692. </em>
  2693. </td>
  2694. <td>
  2695. <p>Key is the key used in the Provider, mandatory</p>
  2696. </td>
  2697. </tr>
  2698. <tr>
  2699. <td>
  2700. <code>metadataPolicy</code></br>
  2701. <em>
  2702. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  2703. ExternalSecretMetadataPolicy
  2704. </a>
  2705. </em>
  2706. </td>
  2707. <td>
  2708. <em>(Optional)</em>
  2709. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  2710. </td>
  2711. </tr>
  2712. <tr>
  2713. <td>
  2714. <code>property</code></br>
  2715. <em>
  2716. string
  2717. </em>
  2718. </td>
  2719. <td>
  2720. <em>(Optional)</em>
  2721. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  2722. </td>
  2723. </tr>
  2724. <tr>
  2725. <td>
  2726. <code>version</code></br>
  2727. <em>
  2728. string
  2729. </em>
  2730. </td>
  2731. <td>
  2732. <em>(Optional)</em>
  2733. <p>Used to select a specific version of the Provider value, if supported</p>
  2734. </td>
  2735. </tr>
  2736. <tr>
  2737. <td>
  2738. <code>conversionStrategy</code></br>
  2739. <em>
  2740. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2741. ExternalSecretConversionStrategy
  2742. </a>
  2743. </em>
  2744. </td>
  2745. <td>
  2746. <em>(Optional)</em>
  2747. <p>Used to define a conversion Strategy</p>
  2748. </td>
  2749. </tr>
  2750. <tr>
  2751. <td>
  2752. <code>decodingStrategy</code></br>
  2753. <em>
  2754. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2755. ExternalSecretDecodingStrategy
  2756. </a>
  2757. </em>
  2758. </td>
  2759. <td>
  2760. <em>(Optional)</em>
  2761. <p>Used to define a decoding Strategy</p>
  2762. </td>
  2763. </tr>
  2764. </tbody>
  2765. </table>
  2766. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  2767. (<code>string</code> alias)</p></h3>
  2768. <p>
  2769. (<em>Appears on:</em>
  2770. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2771. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2772. </p>
  2773. <p>
  2774. </p>
  2775. <table>
  2776. <thead>
  2777. <tr>
  2778. <th>Value</th>
  2779. <th>Description</th>
  2780. </tr>
  2781. </thead>
  2782. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  2783. <td></td>
  2784. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  2785. <td></td>
  2786. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  2787. <td></td>
  2788. </tr><tr><td><p>&#34;None&#34;</p></td>
  2789. <td></td>
  2790. </tr></tbody>
  2791. </table>
  2792. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  2793. (<code>string</code> alias)</p></h3>
  2794. <p>
  2795. (<em>Appears on:</em>
  2796. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2797. </p>
  2798. <p>
  2799. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  2800. </p>
  2801. <table>
  2802. <thead>
  2803. <tr>
  2804. <th>Value</th>
  2805. <th>Description</th>
  2806. </tr>
  2807. </thead>
  2808. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  2809. <td><p>Delete deletes the secret if all provider secrets are deleted.
  2810. If a secret gets deleted on the provider side and is not accessible
  2811. anymore this is not considered an error and the ExternalSecret
  2812. does not go into SecretSyncedError status.</p>
  2813. </td>
  2814. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  2815. <td><p>Merge removes keys in the secret, but not the secret itself.
  2816. If a secret gets deleted on the provider side and is not accessible
  2817. anymore this is not considered an error and the ExternalSecret
  2818. does not go into SecretSyncedError status.</p>
  2819. </td>
  2820. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  2821. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  2822. If a provider secret does not exist the ExternalSecret gets into the
  2823. SecretSyncedError status.</p>
  2824. </td>
  2825. </tr></tbody>
  2826. </table>
  2827. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  2828. </h3>
  2829. <p>
  2830. (<em>Appears on:</em>
  2831. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2832. </p>
  2833. <p>
  2834. </p>
  2835. <table>
  2836. <thead>
  2837. <tr>
  2838. <th>Field</th>
  2839. <th>Description</th>
  2840. </tr>
  2841. </thead>
  2842. <tbody>
  2843. <tr>
  2844. <td>
  2845. <code>path</code></br>
  2846. <em>
  2847. string
  2848. </em>
  2849. </td>
  2850. <td>
  2851. <em>(Optional)</em>
  2852. <p>A root path to start the find operations.</p>
  2853. </td>
  2854. </tr>
  2855. <tr>
  2856. <td>
  2857. <code>name</code></br>
  2858. <em>
  2859. <a href="#external-secrets.io/v1beta1.FindName">
  2860. FindName
  2861. </a>
  2862. </em>
  2863. </td>
  2864. <td>
  2865. <em>(Optional)</em>
  2866. <p>Finds secrets based on the name.</p>
  2867. </td>
  2868. </tr>
  2869. <tr>
  2870. <td>
  2871. <code>tags</code></br>
  2872. <em>
  2873. map[string]string
  2874. </em>
  2875. </td>
  2876. <td>
  2877. <em>(Optional)</em>
  2878. <p>Find secrets based on tags.</p>
  2879. </td>
  2880. </tr>
  2881. <tr>
  2882. <td>
  2883. <code>conversionStrategy</code></br>
  2884. <em>
  2885. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2886. ExternalSecretConversionStrategy
  2887. </a>
  2888. </em>
  2889. </td>
  2890. <td>
  2891. <em>(Optional)</em>
  2892. <p>Used to define a conversion Strategy</p>
  2893. </td>
  2894. </tr>
  2895. <tr>
  2896. <td>
  2897. <code>decodingStrategy</code></br>
  2898. <em>
  2899. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2900. ExternalSecretDecodingStrategy
  2901. </a>
  2902. </em>
  2903. </td>
  2904. <td>
  2905. <em>(Optional)</em>
  2906. <p>Used to define a decoding Strategy</p>
  2907. </td>
  2908. </tr>
  2909. </tbody>
  2910. </table>
  2911. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  2912. (<code>string</code> alias)</p></h3>
  2913. <p>
  2914. (<em>Appears on:</em>
  2915. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  2916. </p>
  2917. <p>
  2918. </p>
  2919. <table>
  2920. <thead>
  2921. <tr>
  2922. <th>Value</th>
  2923. <th>Description</th>
  2924. </tr>
  2925. </thead>
  2926. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  2927. <td></td>
  2928. </tr><tr><td><p>&#34;None&#34;</p></td>
  2929. <td></td>
  2930. </tr></tbody>
  2931. </table>
  2932. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  2933. </h3>
  2934. <p>
  2935. (<em>Appears on:</em>
  2936. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2937. </p>
  2938. <p>
  2939. </p>
  2940. <table>
  2941. <thead>
  2942. <tr>
  2943. <th>Field</th>
  2944. <th>Description</th>
  2945. </tr>
  2946. </thead>
  2947. <tbody>
  2948. <tr>
  2949. <td>
  2950. <code>regexp</code></br>
  2951. <em>
  2952. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  2953. ExternalSecretRewriteRegexp
  2954. </a>
  2955. </em>
  2956. </td>
  2957. <td>
  2958. <em>(Optional)</em>
  2959. <p>Used to rewrite with regular expressions.
  2960. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  2961. </td>
  2962. </tr>
  2963. </tbody>
  2964. </table>
  2965. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  2966. </h3>
  2967. <p>
  2968. (<em>Appears on:</em>
  2969. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  2970. </p>
  2971. <p>
  2972. </p>
  2973. <table>
  2974. <thead>
  2975. <tr>
  2976. <th>Field</th>
  2977. <th>Description</th>
  2978. </tr>
  2979. </thead>
  2980. <tbody>
  2981. <tr>
  2982. <td>
  2983. <code>source</code></br>
  2984. <em>
  2985. string
  2986. </em>
  2987. </td>
  2988. <td>
  2989. <p>Used to define the regular expression of a re.Compiler.</p>
  2990. </td>
  2991. </tr>
  2992. <tr>
  2993. <td>
  2994. <code>target</code></br>
  2995. <em>
  2996. string
  2997. </em>
  2998. </td>
  2999. <td>
  3000. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  3001. </td>
  3002. </tr>
  3003. </tbody>
  3004. </table>
  3005. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  3006. </h3>
  3007. <p>
  3008. (<em>Appears on:</em>
  3009. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  3010. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3011. </p>
  3012. <p>
  3013. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  3014. </p>
  3015. <table>
  3016. <thead>
  3017. <tr>
  3018. <th>Field</th>
  3019. <th>Description</th>
  3020. </tr>
  3021. </thead>
  3022. <tbody>
  3023. <tr>
  3024. <td>
  3025. <code>secretStoreRef</code></br>
  3026. <em>
  3027. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3028. SecretStoreRef
  3029. </a>
  3030. </em>
  3031. </td>
  3032. <td>
  3033. <em>(Optional)</em>
  3034. </td>
  3035. </tr>
  3036. <tr>
  3037. <td>
  3038. <code>target</code></br>
  3039. <em>
  3040. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3041. ExternalSecretTarget
  3042. </a>
  3043. </em>
  3044. </td>
  3045. <td>
  3046. <em>(Optional)</em>
  3047. </td>
  3048. </tr>
  3049. <tr>
  3050. <td>
  3051. <code>refreshInterval</code></br>
  3052. <em>
  3053. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  3054. Kubernetes meta/v1.Duration
  3055. </a>
  3056. </em>
  3057. </td>
  3058. <td>
  3059. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3060. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3061. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3062. </td>
  3063. </tr>
  3064. <tr>
  3065. <td>
  3066. <code>data</code></br>
  3067. <em>
  3068. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3069. []ExternalSecretData
  3070. </a>
  3071. </em>
  3072. </td>
  3073. <td>
  3074. <em>(Optional)</em>
  3075. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3076. </td>
  3077. </tr>
  3078. <tr>
  3079. <td>
  3080. <code>dataFrom</code></br>
  3081. <em>
  3082. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3083. []ExternalSecretDataFromRemoteRef
  3084. </a>
  3085. </em>
  3086. </td>
  3087. <td>
  3088. <em>(Optional)</em>
  3089. <p>DataFrom is used to fetch all properties from a specific Provider data
  3090. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3091. </td>
  3092. </tr>
  3093. </tbody>
  3094. </table>
  3095. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  3096. </h3>
  3097. <p>
  3098. (<em>Appears on:</em>
  3099. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3100. </p>
  3101. <p>
  3102. </p>
  3103. <table>
  3104. <thead>
  3105. <tr>
  3106. <th>Field</th>
  3107. <th>Description</th>
  3108. </tr>
  3109. </thead>
  3110. <tbody>
  3111. <tr>
  3112. <td>
  3113. <code>refreshTime</code></br>
  3114. <em>
  3115. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3116. Kubernetes meta/v1.Time
  3117. </a>
  3118. </em>
  3119. </td>
  3120. <td>
  3121. <p>refreshTime is the time and date the external secret was fetched and
  3122. the target secret updated</p>
  3123. </td>
  3124. </tr>
  3125. <tr>
  3126. <td>
  3127. <code>syncedResourceVersion</code></br>
  3128. <em>
  3129. string
  3130. </em>
  3131. </td>
  3132. <td>
  3133. <p>SyncedResourceVersion keeps track of the last synced version</p>
  3134. </td>
  3135. </tr>
  3136. <tr>
  3137. <td>
  3138. <code>conditions</code></br>
  3139. <em>
  3140. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  3141. []ExternalSecretStatusCondition
  3142. </a>
  3143. </em>
  3144. </td>
  3145. <td>
  3146. <em>(Optional)</em>
  3147. </td>
  3148. </tr>
  3149. </tbody>
  3150. </table>
  3151. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  3152. </h3>
  3153. <p>
  3154. (<em>Appears on:</em>
  3155. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  3156. </p>
  3157. <p>
  3158. </p>
  3159. <table>
  3160. <thead>
  3161. <tr>
  3162. <th>Field</th>
  3163. <th>Description</th>
  3164. </tr>
  3165. </thead>
  3166. <tbody>
  3167. <tr>
  3168. <td>
  3169. <code>type</code></br>
  3170. <em>
  3171. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  3172. ExternalSecretConditionType
  3173. </a>
  3174. </em>
  3175. </td>
  3176. <td>
  3177. </td>
  3178. </tr>
  3179. <tr>
  3180. <td>
  3181. <code>status</code></br>
  3182. <em>
  3183. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  3184. Kubernetes core/v1.ConditionStatus
  3185. </a>
  3186. </em>
  3187. </td>
  3188. <td>
  3189. </td>
  3190. </tr>
  3191. <tr>
  3192. <td>
  3193. <code>reason</code></br>
  3194. <em>
  3195. string
  3196. </em>
  3197. </td>
  3198. <td>
  3199. <em>(Optional)</em>
  3200. </td>
  3201. </tr>
  3202. <tr>
  3203. <td>
  3204. <code>message</code></br>
  3205. <em>
  3206. string
  3207. </em>
  3208. </td>
  3209. <td>
  3210. <em>(Optional)</em>
  3211. </td>
  3212. </tr>
  3213. <tr>
  3214. <td>
  3215. <code>lastTransitionTime</code></br>
  3216. <em>
  3217. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3218. Kubernetes meta/v1.Time
  3219. </a>
  3220. </em>
  3221. </td>
  3222. <td>
  3223. <em>(Optional)</em>
  3224. </td>
  3225. </tr>
  3226. </tbody>
  3227. </table>
  3228. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  3229. </h3>
  3230. <p>
  3231. (<em>Appears on:</em>
  3232. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3233. </p>
  3234. <p>
  3235. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  3236. There can be only one target per ExternalSecret.</p>
  3237. </p>
  3238. <table>
  3239. <thead>
  3240. <tr>
  3241. <th>Field</th>
  3242. <th>Description</th>
  3243. </tr>
  3244. </thead>
  3245. <tbody>
  3246. <tr>
  3247. <td>
  3248. <code>name</code></br>
  3249. <em>
  3250. string
  3251. </em>
  3252. </td>
  3253. <td>
  3254. <em>(Optional)</em>
  3255. <p>Name defines the name of the Secret resource to be managed
  3256. This field is immutable
  3257. Defaults to the .metadata.name of the ExternalSecret resource</p>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td>
  3262. <code>creationPolicy</code></br>
  3263. <em>
  3264. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  3265. ExternalSecretCreationPolicy
  3266. </a>
  3267. </em>
  3268. </td>
  3269. <td>
  3270. <em>(Optional)</em>
  3271. <p>CreationPolicy defines rules on how to create the resulting Secret
  3272. Defaults to &lsquo;Owner&rsquo;</p>
  3273. </td>
  3274. </tr>
  3275. <tr>
  3276. <td>
  3277. <code>deletionPolicy</code></br>
  3278. <em>
  3279. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  3280. ExternalSecretDeletionPolicy
  3281. </a>
  3282. </em>
  3283. </td>
  3284. <td>
  3285. <em>(Optional)</em>
  3286. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  3287. Defaults to &lsquo;Retain&rsquo;</p>
  3288. </td>
  3289. </tr>
  3290. <tr>
  3291. <td>
  3292. <code>template</code></br>
  3293. <em>
  3294. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  3295. ExternalSecretTemplate
  3296. </a>
  3297. </em>
  3298. </td>
  3299. <td>
  3300. <em>(Optional)</em>
  3301. <p>Template defines a blueprint for the created Secret resource.</p>
  3302. </td>
  3303. </tr>
  3304. <tr>
  3305. <td>
  3306. <code>immutable</code></br>
  3307. <em>
  3308. bool
  3309. </em>
  3310. </td>
  3311. <td>
  3312. <em>(Optional)</em>
  3313. <p>Immutable defines if the final secret will be immutable</p>
  3314. </td>
  3315. </tr>
  3316. </tbody>
  3317. </table>
  3318. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  3319. </h3>
  3320. <p>
  3321. (<em>Appears on:</em>
  3322. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3323. </p>
  3324. <p>
  3325. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  3326. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  3327. </p>
  3328. <table>
  3329. <thead>
  3330. <tr>
  3331. <th>Field</th>
  3332. <th>Description</th>
  3333. </tr>
  3334. </thead>
  3335. <tbody>
  3336. <tr>
  3337. <td>
  3338. <code>type</code></br>
  3339. <em>
  3340. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  3341. Kubernetes core/v1.SecretType
  3342. </a>
  3343. </em>
  3344. </td>
  3345. <td>
  3346. <em>(Optional)</em>
  3347. </td>
  3348. </tr>
  3349. <tr>
  3350. <td>
  3351. <code>engineVersion</code></br>
  3352. <em>
  3353. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  3354. TemplateEngineVersion
  3355. </a>
  3356. </em>
  3357. </td>
  3358. <td>
  3359. </td>
  3360. </tr>
  3361. <tr>
  3362. <td>
  3363. <code>metadata</code></br>
  3364. <em>
  3365. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  3366. ExternalSecretTemplateMetadata
  3367. </a>
  3368. </em>
  3369. </td>
  3370. <td>
  3371. <em>(Optional)</em>
  3372. </td>
  3373. </tr>
  3374. <tr>
  3375. <td>
  3376. <code>data</code></br>
  3377. <em>
  3378. map[string]string
  3379. </em>
  3380. </td>
  3381. <td>
  3382. <em>(Optional)</em>
  3383. </td>
  3384. </tr>
  3385. <tr>
  3386. <td>
  3387. <code>templateFrom</code></br>
  3388. <em>
  3389. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  3390. []TemplateFrom
  3391. </a>
  3392. </em>
  3393. </td>
  3394. <td>
  3395. <em>(Optional)</em>
  3396. </td>
  3397. </tr>
  3398. </tbody>
  3399. </table>
  3400. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  3401. </h3>
  3402. <p>
  3403. (<em>Appears on:</em>
  3404. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  3405. </p>
  3406. <p>
  3407. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  3408. </p>
  3409. <table>
  3410. <thead>
  3411. <tr>
  3412. <th>Field</th>
  3413. <th>Description</th>
  3414. </tr>
  3415. </thead>
  3416. <tbody>
  3417. <tr>
  3418. <td>
  3419. <code>annotations</code></br>
  3420. <em>
  3421. map[string]string
  3422. </em>
  3423. </td>
  3424. <td>
  3425. <em>(Optional)</em>
  3426. </td>
  3427. </tr>
  3428. <tr>
  3429. <td>
  3430. <code>labels</code></br>
  3431. <em>
  3432. map[string]string
  3433. </em>
  3434. </td>
  3435. <td>
  3436. <em>(Optional)</em>
  3437. </td>
  3438. </tr>
  3439. </tbody>
  3440. </table>
  3441. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  3442. </h3>
  3443. <p>
  3444. </p>
  3445. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  3446. </h3>
  3447. <p>
  3448. (<em>Appears on:</em>
  3449. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3450. </p>
  3451. <p>
  3452. <p>FakeProvider configures a fake provider that returns static values.</p>
  3453. </p>
  3454. <table>
  3455. <thead>
  3456. <tr>
  3457. <th>Field</th>
  3458. <th>Description</th>
  3459. </tr>
  3460. </thead>
  3461. <tbody>
  3462. <tr>
  3463. <td>
  3464. <code>data</code></br>
  3465. <em>
  3466. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  3467. []FakeProviderData
  3468. </a>
  3469. </em>
  3470. </td>
  3471. <td>
  3472. </td>
  3473. </tr>
  3474. </tbody>
  3475. </table>
  3476. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  3477. </h3>
  3478. <p>
  3479. (<em>Appears on:</em>
  3480. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  3481. </p>
  3482. <p>
  3483. </p>
  3484. <table>
  3485. <thead>
  3486. <tr>
  3487. <th>Field</th>
  3488. <th>Description</th>
  3489. </tr>
  3490. </thead>
  3491. <tbody>
  3492. <tr>
  3493. <td>
  3494. <code>key</code></br>
  3495. <em>
  3496. string
  3497. </em>
  3498. </td>
  3499. <td>
  3500. </td>
  3501. </tr>
  3502. <tr>
  3503. <td>
  3504. <code>value</code></br>
  3505. <em>
  3506. string
  3507. </em>
  3508. </td>
  3509. <td>
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td>
  3514. <code>valueMap</code></br>
  3515. <em>
  3516. map[string]string
  3517. </em>
  3518. </td>
  3519. <td>
  3520. </td>
  3521. </tr>
  3522. <tr>
  3523. <td>
  3524. <code>version</code></br>
  3525. <em>
  3526. string
  3527. </em>
  3528. </td>
  3529. <td>
  3530. </td>
  3531. </tr>
  3532. </tbody>
  3533. </table>
  3534. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  3535. </h3>
  3536. <p>
  3537. (<em>Appears on:</em>
  3538. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3539. </p>
  3540. <p>
  3541. </p>
  3542. <table>
  3543. <thead>
  3544. <tr>
  3545. <th>Field</th>
  3546. <th>Description</th>
  3547. </tr>
  3548. </thead>
  3549. <tbody>
  3550. <tr>
  3551. <td>
  3552. <code>regexp</code></br>
  3553. <em>
  3554. string
  3555. </em>
  3556. </td>
  3557. <td>
  3558. <em>(Optional)</em>
  3559. <p>Finds secrets base</p>
  3560. </td>
  3561. </tr>
  3562. </tbody>
  3563. </table>
  3564. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  3565. </h3>
  3566. <p>
  3567. (<em>Appears on:</em>
  3568. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  3569. </p>
  3570. <p>
  3571. </p>
  3572. <table>
  3573. <thead>
  3574. <tr>
  3575. <th>Field</th>
  3576. <th>Description</th>
  3577. </tr>
  3578. </thead>
  3579. <tbody>
  3580. <tr>
  3581. <td>
  3582. <code>secretRef</code></br>
  3583. <em>
  3584. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  3585. GCPSMAuthSecretRef
  3586. </a>
  3587. </em>
  3588. </td>
  3589. <td>
  3590. <em>(Optional)</em>
  3591. </td>
  3592. </tr>
  3593. <tr>
  3594. <td>
  3595. <code>workloadIdentity</code></br>
  3596. <em>
  3597. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  3598. GCPWorkloadIdentity
  3599. </a>
  3600. </em>
  3601. </td>
  3602. <td>
  3603. <em>(Optional)</em>
  3604. </td>
  3605. </tr>
  3606. </tbody>
  3607. </table>
  3608. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  3609. </h3>
  3610. <p>
  3611. (<em>Appears on:</em>
  3612. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3613. </p>
  3614. <p>
  3615. </p>
  3616. <table>
  3617. <thead>
  3618. <tr>
  3619. <th>Field</th>
  3620. <th>Description</th>
  3621. </tr>
  3622. </thead>
  3623. <tbody>
  3624. <tr>
  3625. <td>
  3626. <code>secretAccessKeySecretRef</code></br>
  3627. <em>
  3628. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3629. </em>
  3630. </td>
  3631. <td>
  3632. <em>(Optional)</em>
  3633. <p>The SecretAccessKey is used for authentication</p>
  3634. </td>
  3635. </tr>
  3636. </tbody>
  3637. </table>
  3638. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  3639. </h3>
  3640. <p>
  3641. (<em>Appears on:</em>
  3642. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3643. </p>
  3644. <p>
  3645. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  3646. </p>
  3647. <table>
  3648. <thead>
  3649. <tr>
  3650. <th>Field</th>
  3651. <th>Description</th>
  3652. </tr>
  3653. </thead>
  3654. <tbody>
  3655. <tr>
  3656. <td>
  3657. <code>auth</code></br>
  3658. <em>
  3659. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  3660. GCPSMAuth
  3661. </a>
  3662. </em>
  3663. </td>
  3664. <td>
  3665. <em>(Optional)</em>
  3666. <p>Auth defines the information necessary to authenticate against GCP</p>
  3667. </td>
  3668. </tr>
  3669. <tr>
  3670. <td>
  3671. <code>projectID</code></br>
  3672. <em>
  3673. string
  3674. </em>
  3675. </td>
  3676. <td>
  3677. <p>ProjectID project where secret is located</p>
  3678. </td>
  3679. </tr>
  3680. </tbody>
  3681. </table>
  3682. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  3683. </h3>
  3684. <p>
  3685. (<em>Appears on:</em>
  3686. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3687. </p>
  3688. <p>
  3689. </p>
  3690. <table>
  3691. <thead>
  3692. <tr>
  3693. <th>Field</th>
  3694. <th>Description</th>
  3695. </tr>
  3696. </thead>
  3697. <tbody>
  3698. <tr>
  3699. <td>
  3700. <code>serviceAccountRef</code></br>
  3701. <em>
  3702. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3703. </em>
  3704. </td>
  3705. <td>
  3706. </td>
  3707. </tr>
  3708. <tr>
  3709. <td>
  3710. <code>clusterLocation</code></br>
  3711. <em>
  3712. string
  3713. </em>
  3714. </td>
  3715. <td>
  3716. </td>
  3717. </tr>
  3718. <tr>
  3719. <td>
  3720. <code>clusterName</code></br>
  3721. <em>
  3722. string
  3723. </em>
  3724. </td>
  3725. <td>
  3726. </td>
  3727. </tr>
  3728. <tr>
  3729. <td>
  3730. <code>clusterProjectID</code></br>
  3731. <em>
  3732. string
  3733. </em>
  3734. </td>
  3735. <td>
  3736. </td>
  3737. </tr>
  3738. </tbody>
  3739. </table>
  3740. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  3741. </h3>
  3742. <p>
  3743. (<em>Appears on:</em>
  3744. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  3745. </p>
  3746. <p>
  3747. <p>GeneratorRef points to a generator custom resource.</p>
  3748. </p>
  3749. <table>
  3750. <thead>
  3751. <tr>
  3752. <th>Field</th>
  3753. <th>Description</th>
  3754. </tr>
  3755. </thead>
  3756. <tbody>
  3757. <tr>
  3758. <td>
  3759. <code>apiVersion</code></br>
  3760. <em>
  3761. string
  3762. </em>
  3763. </td>
  3764. <td>
  3765. <p>Specify the apiVersion of the generator resource</p>
  3766. </td>
  3767. </tr>
  3768. <tr>
  3769. <td>
  3770. <code>kind</code></br>
  3771. <em>
  3772. string
  3773. </em>
  3774. </td>
  3775. <td>
  3776. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  3777. </td>
  3778. </tr>
  3779. <tr>
  3780. <td>
  3781. <code>name</code></br>
  3782. <em>
  3783. string
  3784. </em>
  3785. </td>
  3786. <td>
  3787. <p>Specify the name of the generator resource</p>
  3788. </td>
  3789. </tr>
  3790. </tbody>
  3791. </table>
  3792. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  3793. </h3>
  3794. <p>
  3795. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  3796. or a namespaced SecretStore.</p>
  3797. </p>
  3798. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  3799. </h3>
  3800. <p>
  3801. </p>
  3802. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  3803. </h3>
  3804. <p>
  3805. (<em>Appears on:</em>
  3806. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  3807. </p>
  3808. <p>
  3809. </p>
  3810. <table>
  3811. <thead>
  3812. <tr>
  3813. <th>Field</th>
  3814. <th>Description</th>
  3815. </tr>
  3816. </thead>
  3817. <tbody>
  3818. <tr>
  3819. <td>
  3820. <code>SecretRef</code></br>
  3821. <em>
  3822. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  3823. GitlabSecretRef
  3824. </a>
  3825. </em>
  3826. </td>
  3827. <td>
  3828. </td>
  3829. </tr>
  3830. </tbody>
  3831. </table>
  3832. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  3833. </h3>
  3834. <p>
  3835. (<em>Appears on:</em>
  3836. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3837. </p>
  3838. <p>
  3839. <p>Configures a store to sync secrets with a GitLab instance.</p>
  3840. </p>
  3841. <table>
  3842. <thead>
  3843. <tr>
  3844. <th>Field</th>
  3845. <th>Description</th>
  3846. </tr>
  3847. </thead>
  3848. <tbody>
  3849. <tr>
  3850. <td>
  3851. <code>url</code></br>
  3852. <em>
  3853. string
  3854. </em>
  3855. </td>
  3856. <td>
  3857. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  3858. </td>
  3859. </tr>
  3860. <tr>
  3861. <td>
  3862. <code>auth</code></br>
  3863. <em>
  3864. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  3865. GitlabAuth
  3866. </a>
  3867. </em>
  3868. </td>
  3869. <td>
  3870. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  3871. </td>
  3872. </tr>
  3873. <tr>
  3874. <td>
  3875. <code>projectID</code></br>
  3876. <em>
  3877. string
  3878. </em>
  3879. </td>
  3880. <td>
  3881. <p>ProjectID specifies a project where secrets are located.</p>
  3882. </td>
  3883. </tr>
  3884. <tr>
  3885. <td>
  3886. <code>inheritFromGroups</code></br>
  3887. <em>
  3888. bool
  3889. </em>
  3890. </td>
  3891. <td>
  3892. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  3893. </td>
  3894. </tr>
  3895. <tr>
  3896. <td>
  3897. <code>groupIDs</code></br>
  3898. <em>
  3899. []string
  3900. </em>
  3901. </td>
  3902. <td>
  3903. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  3904. </td>
  3905. </tr>
  3906. <tr>
  3907. <td>
  3908. <code>environment</code></br>
  3909. <em>
  3910. string
  3911. </em>
  3912. </td>
  3913. <td>
  3914. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  3915. </td>
  3916. </tr>
  3917. </tbody>
  3918. </table>
  3919. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  3920. </h3>
  3921. <p>
  3922. (<em>Appears on:</em>
  3923. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  3924. </p>
  3925. <p>
  3926. </p>
  3927. <table>
  3928. <thead>
  3929. <tr>
  3930. <th>Field</th>
  3931. <th>Description</th>
  3932. </tr>
  3933. </thead>
  3934. <tbody>
  3935. <tr>
  3936. <td>
  3937. <code>accessToken</code></br>
  3938. <em>
  3939. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3940. </em>
  3941. </td>
  3942. <td>
  3943. <p>AccessToken is used for authentication.</p>
  3944. </td>
  3945. </tr>
  3946. </tbody>
  3947. </table>
  3948. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  3949. </h3>
  3950. <p>
  3951. (<em>Appears on:</em>
  3952. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  3953. </p>
  3954. <p>
  3955. </p>
  3956. <table>
  3957. <thead>
  3958. <tr>
  3959. <th>Field</th>
  3960. <th>Description</th>
  3961. </tr>
  3962. </thead>
  3963. <tbody>
  3964. <tr>
  3965. <td>
  3966. <code>secretRef</code></br>
  3967. <em>
  3968. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  3969. IBMAuthSecretRef
  3970. </a>
  3971. </em>
  3972. </td>
  3973. <td>
  3974. </td>
  3975. </tr>
  3976. <tr>
  3977. <td>
  3978. <code>containerAuth</code></br>
  3979. <em>
  3980. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  3981. IBMAuthContainerAuth
  3982. </a>
  3983. </em>
  3984. </td>
  3985. <td>
  3986. </td>
  3987. </tr>
  3988. </tbody>
  3989. </table>
  3990. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  3991. </h3>
  3992. <p>
  3993. (<em>Appears on:</em>
  3994. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  3995. </p>
  3996. <p>
  3997. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  3998. </p>
  3999. <table>
  4000. <thead>
  4001. <tr>
  4002. <th>Field</th>
  4003. <th>Description</th>
  4004. </tr>
  4005. </thead>
  4006. <tbody>
  4007. <tr>
  4008. <td>
  4009. <code>profile</code></br>
  4010. <em>
  4011. string
  4012. </em>
  4013. </td>
  4014. <td>
  4015. <p>the IBM Trusted Profile</p>
  4016. </td>
  4017. </tr>
  4018. <tr>
  4019. <td>
  4020. <code>tokenLocation</code></br>
  4021. <em>
  4022. string
  4023. </em>
  4024. </td>
  4025. <td>
  4026. <p>Location the token is mounted on the pod</p>
  4027. </td>
  4028. </tr>
  4029. <tr>
  4030. <td>
  4031. <code>iamEndpoint</code></br>
  4032. <em>
  4033. string
  4034. </em>
  4035. </td>
  4036. <td>
  4037. </td>
  4038. </tr>
  4039. </tbody>
  4040. </table>
  4041. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  4042. </h3>
  4043. <p>
  4044. (<em>Appears on:</em>
  4045. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  4046. </p>
  4047. <p>
  4048. </p>
  4049. <table>
  4050. <thead>
  4051. <tr>
  4052. <th>Field</th>
  4053. <th>Description</th>
  4054. </tr>
  4055. </thead>
  4056. <tbody>
  4057. <tr>
  4058. <td>
  4059. <code>secretApiKeySecretRef</code></br>
  4060. <em>
  4061. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4062. </em>
  4063. </td>
  4064. <td>
  4065. <p>The SecretAccessKey is used for authentication</p>
  4066. </td>
  4067. </tr>
  4068. </tbody>
  4069. </table>
  4070. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  4071. </h3>
  4072. <p>
  4073. (<em>Appears on:</em>
  4074. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4075. </p>
  4076. <p>
  4077. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  4078. backend.</p>
  4079. </p>
  4080. <table>
  4081. <thead>
  4082. <tr>
  4083. <th>Field</th>
  4084. <th>Description</th>
  4085. </tr>
  4086. </thead>
  4087. <tbody>
  4088. <tr>
  4089. <td>
  4090. <code>auth</code></br>
  4091. <em>
  4092. <a href="#external-secrets.io/v1beta1.IBMAuth">
  4093. IBMAuth
  4094. </a>
  4095. </em>
  4096. </td>
  4097. <td>
  4098. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  4099. </td>
  4100. </tr>
  4101. <tr>
  4102. <td>
  4103. <code>serviceUrl</code></br>
  4104. <em>
  4105. string
  4106. </em>
  4107. </td>
  4108. <td>
  4109. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  4110. </td>
  4111. </tr>
  4112. </tbody>
  4113. </table>
  4114. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  4115. </h3>
  4116. <p>
  4117. (<em>Appears on:</em>
  4118. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4119. </p>
  4120. <p>
  4121. </p>
  4122. <table>
  4123. <thead>
  4124. <tr>
  4125. <th>Field</th>
  4126. <th>Description</th>
  4127. </tr>
  4128. </thead>
  4129. <tbody>
  4130. <tr>
  4131. <td>
  4132. <code>cert</code></br>
  4133. <em>
  4134. <a href="#external-secrets.io/v1beta1.CertAuth">
  4135. CertAuth
  4136. </a>
  4137. </em>
  4138. </td>
  4139. <td>
  4140. <em>(Optional)</em>
  4141. <p>has both clientCert and clientKey as secretKeySelector</p>
  4142. </td>
  4143. </tr>
  4144. <tr>
  4145. <td>
  4146. <code>token</code></br>
  4147. <em>
  4148. <a href="#external-secrets.io/v1beta1.TokenAuth">
  4149. TokenAuth
  4150. </a>
  4151. </em>
  4152. </td>
  4153. <td>
  4154. <em>(Optional)</em>
  4155. <p>use static token to authenticate with</p>
  4156. </td>
  4157. </tr>
  4158. <tr>
  4159. <td>
  4160. <code>serviceAccount</code></br>
  4161. <em>
  4162. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  4163. </em>
  4164. </td>
  4165. <td>
  4166. <em>(Optional)</em>
  4167. <p>points to a service account that should be used for authentication</p>
  4168. </td>
  4169. </tr>
  4170. </tbody>
  4171. </table>
  4172. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  4173. </h3>
  4174. <p>
  4175. (<em>Appears on:</em>
  4176. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4177. </p>
  4178. <p>
  4179. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  4180. </p>
  4181. <table>
  4182. <thead>
  4183. <tr>
  4184. <th>Field</th>
  4185. <th>Description</th>
  4186. </tr>
  4187. </thead>
  4188. <tbody>
  4189. <tr>
  4190. <td>
  4191. <code>server</code></br>
  4192. <em>
  4193. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  4194. KubernetesServer
  4195. </a>
  4196. </em>
  4197. </td>
  4198. <td>
  4199. <p>configures the Kubernetes server Address.</p>
  4200. </td>
  4201. </tr>
  4202. <tr>
  4203. <td>
  4204. <code>auth</code></br>
  4205. <em>
  4206. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  4207. KubernetesAuth
  4208. </a>
  4209. </em>
  4210. </td>
  4211. <td>
  4212. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  4213. </td>
  4214. </tr>
  4215. <tr>
  4216. <td>
  4217. <code>remoteNamespace</code></br>
  4218. <em>
  4219. string
  4220. </em>
  4221. </td>
  4222. <td>
  4223. <em>(Optional)</em>
  4224. <p>Remote namespace to fetch the secrets from</p>
  4225. </td>
  4226. </tr>
  4227. </tbody>
  4228. </table>
  4229. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  4230. </h3>
  4231. <p>
  4232. (<em>Appears on:</em>
  4233. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4234. </p>
  4235. <p>
  4236. </p>
  4237. <table>
  4238. <thead>
  4239. <tr>
  4240. <th>Field</th>
  4241. <th>Description</th>
  4242. </tr>
  4243. </thead>
  4244. <tbody>
  4245. <tr>
  4246. <td>
  4247. <code>url</code></br>
  4248. <em>
  4249. string
  4250. </em>
  4251. </td>
  4252. <td>
  4253. <em>(Optional)</em>
  4254. <p>configures the Kubernetes server Address.</p>
  4255. </td>
  4256. </tr>
  4257. <tr>
  4258. <td>
  4259. <code>caBundle</code></br>
  4260. <em>
  4261. []byte
  4262. </em>
  4263. </td>
  4264. <td>
  4265. <em>(Optional)</em>
  4266. <p>CABundle is a base64-encoded CA certificate</p>
  4267. </td>
  4268. </tr>
  4269. <tr>
  4270. <td>
  4271. <code>caProvider</code></br>
  4272. <em>
  4273. <a href="#external-secrets.io/v1beta1.CAProvider">
  4274. CAProvider
  4275. </a>
  4276. </em>
  4277. </td>
  4278. <td>
  4279. <em>(Optional)</em>
  4280. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  4281. </td>
  4282. </tr>
  4283. </tbody>
  4284. </table>
  4285. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  4286. </h3>
  4287. <p>
  4288. <p>NoSecretError shall be returned when a GetSecret can not find the
  4289. desired secret. This is used for deletionPolicy.</p>
  4290. </p>
  4291. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  4292. </h3>
  4293. <p>
  4294. (<em>Appears on:</em>
  4295. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  4296. </p>
  4297. <p>
  4298. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  4299. </p>
  4300. <table>
  4301. <thead>
  4302. <tr>
  4303. <th>Field</th>
  4304. <th>Description</th>
  4305. </tr>
  4306. </thead>
  4307. <tbody>
  4308. <tr>
  4309. <td>
  4310. <code>secretRef</code></br>
  4311. <em>
  4312. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  4313. OnePasswordAuthSecretRef
  4314. </a>
  4315. </em>
  4316. </td>
  4317. <td>
  4318. </td>
  4319. </tr>
  4320. </tbody>
  4321. </table>
  4322. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  4323. </h3>
  4324. <p>
  4325. (<em>Appears on:</em>
  4326. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  4327. </p>
  4328. <p>
  4329. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  4330. </p>
  4331. <table>
  4332. <thead>
  4333. <tr>
  4334. <th>Field</th>
  4335. <th>Description</th>
  4336. </tr>
  4337. </thead>
  4338. <tbody>
  4339. <tr>
  4340. <td>
  4341. <code>connectTokenSecretRef</code></br>
  4342. <em>
  4343. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4344. </em>
  4345. </td>
  4346. <td>
  4347. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  4348. </td>
  4349. </tr>
  4350. </tbody>
  4351. </table>
  4352. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  4353. </h3>
  4354. <p>
  4355. (<em>Appears on:</em>
  4356. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4357. </p>
  4358. <p>
  4359. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  4360. </p>
  4361. <table>
  4362. <thead>
  4363. <tr>
  4364. <th>Field</th>
  4365. <th>Description</th>
  4366. </tr>
  4367. </thead>
  4368. <tbody>
  4369. <tr>
  4370. <td>
  4371. <code>auth</code></br>
  4372. <em>
  4373. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  4374. OnePasswordAuth
  4375. </a>
  4376. </em>
  4377. </td>
  4378. <td>
  4379. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  4380. </td>
  4381. </tr>
  4382. <tr>
  4383. <td>
  4384. <code>connectHost</code></br>
  4385. <em>
  4386. string
  4387. </em>
  4388. </td>
  4389. <td>
  4390. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  4391. </td>
  4392. </tr>
  4393. <tr>
  4394. <td>
  4395. <code>vaults</code></br>
  4396. <em>
  4397. map[string]int
  4398. </em>
  4399. </td>
  4400. <td>
  4401. <p>Vaults defines which OnePassword vaults to search in which order</p>
  4402. </td>
  4403. </tr>
  4404. </tbody>
  4405. </table>
  4406. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  4407. </h3>
  4408. <p>
  4409. (<em>Appears on:</em>
  4410. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  4411. </p>
  4412. <p>
  4413. </p>
  4414. <table>
  4415. <thead>
  4416. <tr>
  4417. <th>Field</th>
  4418. <th>Description</th>
  4419. </tr>
  4420. </thead>
  4421. <tbody>
  4422. <tr>
  4423. <td>
  4424. <code>tenancy</code></br>
  4425. <em>
  4426. string
  4427. </em>
  4428. </td>
  4429. <td>
  4430. <p>Tenancy is the tenancy OCID where user is located.</p>
  4431. </td>
  4432. </tr>
  4433. <tr>
  4434. <td>
  4435. <code>user</code></br>
  4436. <em>
  4437. string
  4438. </em>
  4439. </td>
  4440. <td>
  4441. <p>User is an access OCID specific to the account.</p>
  4442. </td>
  4443. </tr>
  4444. <tr>
  4445. <td>
  4446. <code>secretRef</code></br>
  4447. <em>
  4448. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  4449. OracleSecretRef
  4450. </a>
  4451. </em>
  4452. </td>
  4453. <td>
  4454. <p>SecretRef to pass through sensitive information.</p>
  4455. </td>
  4456. </tr>
  4457. </tbody>
  4458. </table>
  4459. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  4460. </h3>
  4461. <p>
  4462. (<em>Appears on:</em>
  4463. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4464. </p>
  4465. <p>
  4466. <p>Configures an store to sync secrets using a Oracle Vault
  4467. backend.</p>
  4468. </p>
  4469. <table>
  4470. <thead>
  4471. <tr>
  4472. <th>Field</th>
  4473. <th>Description</th>
  4474. </tr>
  4475. </thead>
  4476. <tbody>
  4477. <tr>
  4478. <td>
  4479. <code>region</code></br>
  4480. <em>
  4481. string
  4482. </em>
  4483. </td>
  4484. <td>
  4485. <p>Region is the region where vault is located.</p>
  4486. </td>
  4487. </tr>
  4488. <tr>
  4489. <td>
  4490. <code>vault</code></br>
  4491. <em>
  4492. string
  4493. </em>
  4494. </td>
  4495. <td>
  4496. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  4497. </td>
  4498. </tr>
  4499. <tr>
  4500. <td>
  4501. <code>auth</code></br>
  4502. <em>
  4503. <a href="#external-secrets.io/v1beta1.OracleAuth">
  4504. OracleAuth
  4505. </a>
  4506. </em>
  4507. </td>
  4508. <td>
  4509. <em>(Optional)</em>
  4510. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  4511. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  4512. </td>
  4513. </tr>
  4514. </tbody>
  4515. </table>
  4516. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  4517. </h3>
  4518. <p>
  4519. (<em>Appears on:</em>
  4520. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  4521. </p>
  4522. <p>
  4523. </p>
  4524. <table>
  4525. <thead>
  4526. <tr>
  4527. <th>Field</th>
  4528. <th>Description</th>
  4529. </tr>
  4530. </thead>
  4531. <tbody>
  4532. <tr>
  4533. <td>
  4534. <code>privatekey</code></br>
  4535. <em>
  4536. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4537. </em>
  4538. </td>
  4539. <td>
  4540. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  4541. </td>
  4542. </tr>
  4543. <tr>
  4544. <td>
  4545. <code>fingerprint</code></br>
  4546. <em>
  4547. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4548. </em>
  4549. </td>
  4550. <td>
  4551. <p>Fingerprint is the fingerprint of the API private key.</p>
  4552. </td>
  4553. </tr>
  4554. </tbody>
  4555. </table>
  4556. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  4557. </h3>
  4558. <p>
  4559. <p>Provider is a common interface for interacting with secret backends.</p>
  4560. </p>
  4561. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  4562. </h3>
  4563. <p>
  4564. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  4565. </p>
  4566. <table>
  4567. <thead>
  4568. <tr>
  4569. <th>Field</th>
  4570. <th>Description</th>
  4571. </tr>
  4572. </thead>
  4573. <tbody>
  4574. <tr>
  4575. <td>
  4576. <code>metadata</code></br>
  4577. <em>
  4578. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  4579. Kubernetes meta/v1.ObjectMeta
  4580. </a>
  4581. </em>
  4582. </td>
  4583. <td>
  4584. Refer to the Kubernetes API documentation for the fields of the
  4585. <code>metadata</code> field.
  4586. </td>
  4587. </tr>
  4588. <tr>
  4589. <td>
  4590. <code>spec</code></br>
  4591. <em>
  4592. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  4593. SecretStoreSpec
  4594. </a>
  4595. </em>
  4596. </td>
  4597. <td>
  4598. <br/>
  4599. <br/>
  4600. <table>
  4601. <tr>
  4602. <td>
  4603. <code>controller</code></br>
  4604. <em>
  4605. string
  4606. </em>
  4607. </td>
  4608. <td>
  4609. <em>(Optional)</em>
  4610. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4611. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4612. </td>
  4613. </tr>
  4614. <tr>
  4615. <td>
  4616. <code>provider</code></br>
  4617. <em>
  4618. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4619. SecretStoreProvider
  4620. </a>
  4621. </em>
  4622. </td>
  4623. <td>
  4624. <p>Used to configure the provider. Only one provider may be set</p>
  4625. </td>
  4626. </tr>
  4627. <tr>
  4628. <td>
  4629. <code>retrySettings</code></br>
  4630. <em>
  4631. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4632. SecretStoreRetrySettings
  4633. </a>
  4634. </em>
  4635. </td>
  4636. <td>
  4637. <em>(Optional)</em>
  4638. <p>Used to configure http retries if failed</p>
  4639. </td>
  4640. </tr>
  4641. <tr>
  4642. <td>
  4643. <code>refreshInterval</code></br>
  4644. <em>
  4645. int
  4646. </em>
  4647. </td>
  4648. <td>
  4649. <em>(Optional)</em>
  4650. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4651. </td>
  4652. </tr>
  4653. <tr>
  4654. <td>
  4655. <code>conditions</code></br>
  4656. <em>
  4657. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  4658. []ClusterSecretStoreCondition
  4659. </a>
  4660. </em>
  4661. </td>
  4662. <td>
  4663. <em>(Optional)</em>
  4664. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  4665. </td>
  4666. </tr>
  4667. </table>
  4668. </td>
  4669. </tr>
  4670. <tr>
  4671. <td>
  4672. <code>status</code></br>
  4673. <em>
  4674. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  4675. SecretStoreStatus
  4676. </a>
  4677. </em>
  4678. </td>
  4679. <td>
  4680. </td>
  4681. </tr>
  4682. </tbody>
  4683. </table>
  4684. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  4685. (<code>string</code> alias)</p></h3>
  4686. <p>
  4687. (<em>Appears on:</em>
  4688. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  4689. </p>
  4690. <p>
  4691. </p>
  4692. <table>
  4693. <thead>
  4694. <tr>
  4695. <th>Value</th>
  4696. <th>Description</th>
  4697. </tr>
  4698. </thead>
  4699. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  4700. <td></td>
  4701. </tr></tbody>
  4702. </table>
  4703. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  4704. </h3>
  4705. <p>
  4706. (<em>Appears on:</em>
  4707. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4708. </p>
  4709. <p>
  4710. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  4711. </p>
  4712. <table>
  4713. <thead>
  4714. <tr>
  4715. <th>Field</th>
  4716. <th>Description</th>
  4717. </tr>
  4718. </thead>
  4719. <tbody>
  4720. <tr>
  4721. <td>
  4722. <code>aws</code></br>
  4723. <em>
  4724. <a href="#external-secrets.io/v1beta1.AWSProvider">
  4725. AWSProvider
  4726. </a>
  4727. </em>
  4728. </td>
  4729. <td>
  4730. <em>(Optional)</em>
  4731. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  4732. </td>
  4733. </tr>
  4734. <tr>
  4735. <td>
  4736. <code>azurekv</code></br>
  4737. <em>
  4738. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  4739. AzureKVProvider
  4740. </a>
  4741. </em>
  4742. </td>
  4743. <td>
  4744. <em>(Optional)</em>
  4745. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  4746. </td>
  4747. </tr>
  4748. <tr>
  4749. <td>
  4750. <code>akeyless</code></br>
  4751. <em>
  4752. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  4753. AkeylessProvider
  4754. </a>
  4755. </em>
  4756. </td>
  4757. <td>
  4758. <em>(Optional)</em>
  4759. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  4760. </td>
  4761. </tr>
  4762. <tr>
  4763. <td>
  4764. <code>vault</code></br>
  4765. <em>
  4766. <a href="#external-secrets.io/v1beta1.VaultProvider">
  4767. VaultProvider
  4768. </a>
  4769. </em>
  4770. </td>
  4771. <td>
  4772. <em>(Optional)</em>
  4773. <p>Vault configures this store to sync secrets using Hashi provider</p>
  4774. </td>
  4775. </tr>
  4776. <tr>
  4777. <td>
  4778. <code>gcpsm</code></br>
  4779. <em>
  4780. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  4781. GCPSMProvider
  4782. </a>
  4783. </em>
  4784. </td>
  4785. <td>
  4786. <em>(Optional)</em>
  4787. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  4788. </td>
  4789. </tr>
  4790. <tr>
  4791. <td>
  4792. <code>oracle</code></br>
  4793. <em>
  4794. <a href="#external-secrets.io/v1beta1.OracleProvider">
  4795. OracleProvider
  4796. </a>
  4797. </em>
  4798. </td>
  4799. <td>
  4800. <em>(Optional)</em>
  4801. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  4802. </td>
  4803. </tr>
  4804. <tr>
  4805. <td>
  4806. <code>ibm</code></br>
  4807. <em>
  4808. <a href="#external-secrets.io/v1beta1.IBMProvider">
  4809. IBMProvider
  4810. </a>
  4811. </em>
  4812. </td>
  4813. <td>
  4814. <em>(Optional)</em>
  4815. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  4816. </td>
  4817. </tr>
  4818. <tr>
  4819. <td>
  4820. <code>yandexcertificatemanager</code></br>
  4821. <em>
  4822. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  4823. YandexCertificateManagerProvider
  4824. </a>
  4825. </em>
  4826. </td>
  4827. <td>
  4828. <em>(Optional)</em>
  4829. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  4830. </td>
  4831. </tr>
  4832. <tr>
  4833. <td>
  4834. <code>yandexlockbox</code></br>
  4835. <em>
  4836. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  4837. YandexLockboxProvider
  4838. </a>
  4839. </em>
  4840. </td>
  4841. <td>
  4842. <em>(Optional)</em>
  4843. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  4844. </td>
  4845. </tr>
  4846. <tr>
  4847. <td>
  4848. <code>gitlab</code></br>
  4849. <em>
  4850. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  4851. GitlabProvider
  4852. </a>
  4853. </em>
  4854. </td>
  4855. <td>
  4856. <em>(Optional)</em>
  4857. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  4858. </td>
  4859. </tr>
  4860. <tr>
  4861. <td>
  4862. <code>alibaba</code></br>
  4863. <em>
  4864. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  4865. AlibabaProvider
  4866. </a>
  4867. </em>
  4868. </td>
  4869. <td>
  4870. <em>(Optional)</em>
  4871. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  4872. </td>
  4873. </tr>
  4874. <tr>
  4875. <td>
  4876. <code>onepassword</code></br>
  4877. <em>
  4878. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  4879. OnePasswordProvider
  4880. </a>
  4881. </em>
  4882. </td>
  4883. <td>
  4884. <em>(Optional)</em>
  4885. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  4886. </td>
  4887. </tr>
  4888. <tr>
  4889. <td>
  4890. <code>webhook</code></br>
  4891. <em>
  4892. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  4893. WebhookProvider
  4894. </a>
  4895. </em>
  4896. </td>
  4897. <td>
  4898. <em>(Optional)</em>
  4899. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  4900. </td>
  4901. </tr>
  4902. <tr>
  4903. <td>
  4904. <code>kubernetes</code></br>
  4905. <em>
  4906. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  4907. KubernetesProvider
  4908. </a>
  4909. </em>
  4910. </td>
  4911. <td>
  4912. <em>(Optional)</em>
  4913. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  4914. </td>
  4915. </tr>
  4916. <tr>
  4917. <td>
  4918. <code>fake</code></br>
  4919. <em>
  4920. <a href="#external-secrets.io/v1beta1.FakeProvider">
  4921. FakeProvider
  4922. </a>
  4923. </em>
  4924. </td>
  4925. <td>
  4926. <em>(Optional)</em>
  4927. <p>Fake configures a store with static key/value pairs</p>
  4928. </td>
  4929. </tr>
  4930. <tr>
  4931. <td>
  4932. <code>senhasegura</code></br>
  4933. <em>
  4934. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  4935. SenhaseguraProvider
  4936. </a>
  4937. </em>
  4938. </td>
  4939. <td>
  4940. <em>(Optional)</em>
  4941. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  4942. </td>
  4943. </tr>
  4944. <tr>
  4945. <td>
  4946. <code>doppler</code></br>
  4947. <em>
  4948. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  4949. DopplerProvider
  4950. </a>
  4951. </em>
  4952. </td>
  4953. <td>
  4954. <em>(Optional)</em>
  4955. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  4956. </td>
  4957. </tr>
  4958. </tbody>
  4959. </table>
  4960. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  4961. </h3>
  4962. <p>
  4963. (<em>Appears on:</em>
  4964. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  4965. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  4966. </p>
  4967. <p>
  4968. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  4969. </p>
  4970. <table>
  4971. <thead>
  4972. <tr>
  4973. <th>Field</th>
  4974. <th>Description</th>
  4975. </tr>
  4976. </thead>
  4977. <tbody>
  4978. <tr>
  4979. <td>
  4980. <code>name</code></br>
  4981. <em>
  4982. string
  4983. </em>
  4984. </td>
  4985. <td>
  4986. <p>Name of the SecretStore resource</p>
  4987. </td>
  4988. </tr>
  4989. <tr>
  4990. <td>
  4991. <code>kind</code></br>
  4992. <em>
  4993. string
  4994. </em>
  4995. </td>
  4996. <td>
  4997. <em>(Optional)</em>
  4998. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  4999. Defaults to <code>SecretStore</code></p>
  5000. </td>
  5001. </tr>
  5002. </tbody>
  5003. </table>
  5004. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  5005. </h3>
  5006. <p>
  5007. (<em>Appears on:</em>
  5008. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  5009. </p>
  5010. <p>
  5011. </p>
  5012. <table>
  5013. <thead>
  5014. <tr>
  5015. <th>Field</th>
  5016. <th>Description</th>
  5017. </tr>
  5018. </thead>
  5019. <tbody>
  5020. <tr>
  5021. <td>
  5022. <code>maxRetries</code></br>
  5023. <em>
  5024. int32
  5025. </em>
  5026. </td>
  5027. <td>
  5028. </td>
  5029. </tr>
  5030. <tr>
  5031. <td>
  5032. <code>retryInterval</code></br>
  5033. <em>
  5034. string
  5035. </em>
  5036. </td>
  5037. <td>
  5038. </td>
  5039. </tr>
  5040. </tbody>
  5041. </table>
  5042. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  5043. </h3>
  5044. <p>
  5045. (<em>Appears on:</em>
  5046. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5047. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5048. </p>
  5049. <p>
  5050. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  5051. </p>
  5052. <table>
  5053. <thead>
  5054. <tr>
  5055. <th>Field</th>
  5056. <th>Description</th>
  5057. </tr>
  5058. </thead>
  5059. <tbody>
  5060. <tr>
  5061. <td>
  5062. <code>controller</code></br>
  5063. <em>
  5064. string
  5065. </em>
  5066. </td>
  5067. <td>
  5068. <em>(Optional)</em>
  5069. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  5070. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  5071. </td>
  5072. </tr>
  5073. <tr>
  5074. <td>
  5075. <code>provider</code></br>
  5076. <em>
  5077. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  5078. SecretStoreProvider
  5079. </a>
  5080. </em>
  5081. </td>
  5082. <td>
  5083. <p>Used to configure the provider. Only one provider may be set</p>
  5084. </td>
  5085. </tr>
  5086. <tr>
  5087. <td>
  5088. <code>retrySettings</code></br>
  5089. <em>
  5090. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  5091. SecretStoreRetrySettings
  5092. </a>
  5093. </em>
  5094. </td>
  5095. <td>
  5096. <em>(Optional)</em>
  5097. <p>Used to configure http retries if failed</p>
  5098. </td>
  5099. </tr>
  5100. <tr>
  5101. <td>
  5102. <code>refreshInterval</code></br>
  5103. <em>
  5104. int
  5105. </em>
  5106. </td>
  5107. <td>
  5108. <em>(Optional)</em>
  5109. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  5110. </td>
  5111. </tr>
  5112. <tr>
  5113. <td>
  5114. <code>conditions</code></br>
  5115. <em>
  5116. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  5117. []ClusterSecretStoreCondition
  5118. </a>
  5119. </em>
  5120. </td>
  5121. <td>
  5122. <em>(Optional)</em>
  5123. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  5124. </td>
  5125. </tr>
  5126. </tbody>
  5127. </table>
  5128. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  5129. </h3>
  5130. <p>
  5131. (<em>Appears on:</em>
  5132. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5133. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5134. </p>
  5135. <p>
  5136. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  5137. </p>
  5138. <table>
  5139. <thead>
  5140. <tr>
  5141. <th>Field</th>
  5142. <th>Description</th>
  5143. </tr>
  5144. </thead>
  5145. <tbody>
  5146. <tr>
  5147. <td>
  5148. <code>conditions</code></br>
  5149. <em>
  5150. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  5151. []SecretStoreStatusCondition
  5152. </a>
  5153. </em>
  5154. </td>
  5155. <td>
  5156. <em>(Optional)</em>
  5157. </td>
  5158. </tr>
  5159. </tbody>
  5160. </table>
  5161. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  5162. </h3>
  5163. <p>
  5164. (<em>Appears on:</em>
  5165. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  5166. </p>
  5167. <p>
  5168. </p>
  5169. <table>
  5170. <thead>
  5171. <tr>
  5172. <th>Field</th>
  5173. <th>Description</th>
  5174. </tr>
  5175. </thead>
  5176. <tbody>
  5177. <tr>
  5178. <td>
  5179. <code>type</code></br>
  5180. <em>
  5181. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  5182. SecretStoreConditionType
  5183. </a>
  5184. </em>
  5185. </td>
  5186. <td>
  5187. </td>
  5188. </tr>
  5189. <tr>
  5190. <td>
  5191. <code>status</code></br>
  5192. <em>
  5193. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  5194. Kubernetes core/v1.ConditionStatus
  5195. </a>
  5196. </em>
  5197. </td>
  5198. <td>
  5199. </td>
  5200. </tr>
  5201. <tr>
  5202. <td>
  5203. <code>reason</code></br>
  5204. <em>
  5205. string
  5206. </em>
  5207. </td>
  5208. <td>
  5209. <em>(Optional)</em>
  5210. </td>
  5211. </tr>
  5212. <tr>
  5213. <td>
  5214. <code>message</code></br>
  5215. <em>
  5216. string
  5217. </em>
  5218. </td>
  5219. <td>
  5220. <em>(Optional)</em>
  5221. </td>
  5222. </tr>
  5223. <tr>
  5224. <td>
  5225. <code>lastTransitionTime</code></br>
  5226. <em>
  5227. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  5228. Kubernetes meta/v1.Time
  5229. </a>
  5230. </em>
  5231. </td>
  5232. <td>
  5233. <em>(Optional)</em>
  5234. </td>
  5235. </tr>
  5236. </tbody>
  5237. </table>
  5238. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  5239. </h3>
  5240. <p>
  5241. <p>SecretsClient provides access to secrets.</p>
  5242. </p>
  5243. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  5244. </h3>
  5245. <p>
  5246. (<em>Appears on:</em>
  5247. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5248. </p>
  5249. <p>
  5250. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  5251. </p>
  5252. <table>
  5253. <thead>
  5254. <tr>
  5255. <th>Field</th>
  5256. <th>Description</th>
  5257. </tr>
  5258. </thead>
  5259. <tbody>
  5260. <tr>
  5261. <td>
  5262. <code>clientId</code></br>
  5263. <em>
  5264. string
  5265. </em>
  5266. </td>
  5267. <td>
  5268. </td>
  5269. </tr>
  5270. <tr>
  5271. <td>
  5272. <code>clientSecretSecretRef</code></br>
  5273. <em>
  5274. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5275. </em>
  5276. </td>
  5277. <td>
  5278. </td>
  5279. </tr>
  5280. </tbody>
  5281. </table>
  5282. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  5283. (<code>string</code> alias)</p></h3>
  5284. <p>
  5285. (<em>Appears on:</em>
  5286. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5287. </p>
  5288. <p>
  5289. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  5290. </p>
  5291. <table>
  5292. <thead>
  5293. <tr>
  5294. <th>Value</th>
  5295. <th>Description</th>
  5296. </tr>
  5297. </thead>
  5298. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  5299. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  5300. see: https://senhasegura.com/devops
  5301. </code></pre>
  5302. </td>
  5303. </tr></tbody>
  5304. </table>
  5305. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  5306. </h3>
  5307. <p>
  5308. (<em>Appears on:</em>
  5309. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5310. </p>
  5311. <p>
  5312. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  5313. </p>
  5314. <table>
  5315. <thead>
  5316. <tr>
  5317. <th>Field</th>
  5318. <th>Description</th>
  5319. </tr>
  5320. </thead>
  5321. <tbody>
  5322. <tr>
  5323. <td>
  5324. <code>url</code></br>
  5325. <em>
  5326. string
  5327. </em>
  5328. </td>
  5329. <td>
  5330. <p>URL of senhasegura</p>
  5331. </td>
  5332. </tr>
  5333. <tr>
  5334. <td>
  5335. <code>module</code></br>
  5336. <em>
  5337. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  5338. SenhaseguraModuleType
  5339. </a>
  5340. </em>
  5341. </td>
  5342. <td>
  5343. <p>Module defines which senhasegura module should be used to get secrets</p>
  5344. </td>
  5345. </tr>
  5346. <tr>
  5347. <td>
  5348. <code>auth</code></br>
  5349. <em>
  5350. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  5351. SenhaseguraAuth
  5352. </a>
  5353. </em>
  5354. </td>
  5355. <td>
  5356. <p>Auth defines parameters to authenticate in senhasegura</p>
  5357. </td>
  5358. </tr>
  5359. <tr>
  5360. <td>
  5361. <code>ignoreSslCertificate</code></br>
  5362. <em>
  5363. bool
  5364. </em>
  5365. </td>
  5366. <td>
  5367. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  5368. </td>
  5369. </tr>
  5370. </tbody>
  5371. </table>
  5372. <h3 id="external-secrets.io/v1beta1.SourceRef">SourceRef
  5373. </h3>
  5374. <p>
  5375. (<em>Appears on:</em>
  5376. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  5377. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5378. </p>
  5379. <p>
  5380. <p>SourceRef allows you to override the source
  5381. from which the secret will be pulled from.
  5382. You can define at maximum one property.</p>
  5383. </p>
  5384. <table>
  5385. <thead>
  5386. <tr>
  5387. <th>Field</th>
  5388. <th>Description</th>
  5389. </tr>
  5390. </thead>
  5391. <tbody>
  5392. <tr>
  5393. <td>
  5394. <code>storeRef</code></br>
  5395. <em>
  5396. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  5397. SecretStoreRef
  5398. </a>
  5399. </em>
  5400. </td>
  5401. <td>
  5402. <em>(Optional)</em>
  5403. </td>
  5404. </tr>
  5405. <tr>
  5406. <td>
  5407. <code>generatorRef</code></br>
  5408. <em>
  5409. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  5410. GeneratorRef
  5411. </a>
  5412. </em>
  5413. </td>
  5414. <td>
  5415. <em>(Optional)</em>
  5416. <p>GeneratorRef points to a generator custom resource in</p>
  5417. </td>
  5418. </tr>
  5419. </tbody>
  5420. </table>
  5421. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  5422. (<code>string</code> alias)</p></h3>
  5423. <p>
  5424. (<em>Appears on:</em>
  5425. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5426. </p>
  5427. <p>
  5428. </p>
  5429. <table>
  5430. <thead>
  5431. <tr>
  5432. <th>Value</th>
  5433. <th>Description</th>
  5434. </tr>
  5435. </thead>
  5436. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5437. <td></td>
  5438. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5439. <td></td>
  5440. </tr></tbody>
  5441. </table>
  5442. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  5443. </h3>
  5444. <p>
  5445. (<em>Appears on:</em>
  5446. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5447. </p>
  5448. <p>
  5449. </p>
  5450. <table>
  5451. <thead>
  5452. <tr>
  5453. <th>Field</th>
  5454. <th>Description</th>
  5455. </tr>
  5456. </thead>
  5457. <tbody>
  5458. <tr>
  5459. <td>
  5460. <code>configMap</code></br>
  5461. <em>
  5462. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5463. TemplateRef
  5464. </a>
  5465. </em>
  5466. </td>
  5467. <td>
  5468. </td>
  5469. </tr>
  5470. <tr>
  5471. <td>
  5472. <code>secret</code></br>
  5473. <em>
  5474. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5475. TemplateRef
  5476. </a>
  5477. </em>
  5478. </td>
  5479. <td>
  5480. </td>
  5481. </tr>
  5482. <tr>
  5483. <td>
  5484. <code>scope</code></br>
  5485. <em>
  5486. <a href="#external-secrets.io/v1beta1.TemplateScope">
  5487. TemplateScope
  5488. </a>
  5489. </em>
  5490. </td>
  5491. <td>
  5492. <em>(Optional)</em>
  5493. </td>
  5494. </tr>
  5495. <tr>
  5496. <td>
  5497. <code>target</code></br>
  5498. <em>
  5499. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  5500. TemplateTarget
  5501. </a>
  5502. </em>
  5503. </td>
  5504. <td>
  5505. <em>(Optional)</em>
  5506. </td>
  5507. </tr>
  5508. <tr>
  5509. <td>
  5510. <code>literal</code></br>
  5511. <em>
  5512. string
  5513. </em>
  5514. </td>
  5515. <td>
  5516. <em>(Optional)</em>
  5517. </td>
  5518. </tr>
  5519. </tbody>
  5520. </table>
  5521. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  5522. </h3>
  5523. <p>
  5524. (<em>Appears on:</em>
  5525. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5526. </p>
  5527. <p>
  5528. </p>
  5529. <table>
  5530. <thead>
  5531. <tr>
  5532. <th>Field</th>
  5533. <th>Description</th>
  5534. </tr>
  5535. </thead>
  5536. <tbody>
  5537. <tr>
  5538. <td>
  5539. <code>name</code></br>
  5540. <em>
  5541. string
  5542. </em>
  5543. </td>
  5544. <td>
  5545. </td>
  5546. </tr>
  5547. <tr>
  5548. <td>
  5549. <code>items</code></br>
  5550. <em>
  5551. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  5552. []TemplateRefItem
  5553. </a>
  5554. </em>
  5555. </td>
  5556. <td>
  5557. </td>
  5558. </tr>
  5559. </tbody>
  5560. </table>
  5561. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  5562. </h3>
  5563. <p>
  5564. (<em>Appears on:</em>
  5565. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  5566. </p>
  5567. <p>
  5568. </p>
  5569. <table>
  5570. <thead>
  5571. <tr>
  5572. <th>Field</th>
  5573. <th>Description</th>
  5574. </tr>
  5575. </thead>
  5576. <tbody>
  5577. <tr>
  5578. <td>
  5579. <code>key</code></br>
  5580. <em>
  5581. string
  5582. </em>
  5583. </td>
  5584. <td>
  5585. </td>
  5586. </tr>
  5587. </tbody>
  5588. </table>
  5589. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  5590. (<code>string</code> alias)</p></h3>
  5591. <p>
  5592. (<em>Appears on:</em>
  5593. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5594. </p>
  5595. <p>
  5596. </p>
  5597. <table>
  5598. <thead>
  5599. <tr>
  5600. <th>Value</th>
  5601. <th>Description</th>
  5602. </tr>
  5603. </thead>
  5604. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  5605. <td></td>
  5606. </tr><tr><td><p>&#34;Values&#34;</p></td>
  5607. <td></td>
  5608. </tr></tbody>
  5609. </table>
  5610. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  5611. (<code>string</code> alias)</p></h3>
  5612. <p>
  5613. (<em>Appears on:</em>
  5614. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5615. </p>
  5616. <p>
  5617. </p>
  5618. <table>
  5619. <thead>
  5620. <tr>
  5621. <th>Value</th>
  5622. <th>Description</th>
  5623. </tr>
  5624. </thead>
  5625. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  5626. <td></td>
  5627. </tr><tr><td><p>&#34;Data&#34;</p></td>
  5628. <td></td>
  5629. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  5630. <td></td>
  5631. </tr><tr><td><p>&#34;StringData&#34;</p></td>
  5632. <td></td>
  5633. </tr></tbody>
  5634. </table>
  5635. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  5636. </h3>
  5637. <p>
  5638. (<em>Appears on:</em>
  5639. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  5640. </p>
  5641. <p>
  5642. </p>
  5643. <table>
  5644. <thead>
  5645. <tr>
  5646. <th>Field</th>
  5647. <th>Description</th>
  5648. </tr>
  5649. </thead>
  5650. <tbody>
  5651. <tr>
  5652. <td>
  5653. <code>bearerToken</code></br>
  5654. <em>
  5655. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5656. </em>
  5657. </td>
  5658. <td>
  5659. </td>
  5660. </tr>
  5661. </tbody>
  5662. </table>
  5663. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  5664. (<code>byte</code> alias)</p></h3>
  5665. <p>
  5666. </p>
  5667. <table>
  5668. <thead>
  5669. <tr>
  5670. <th>Value</th>
  5671. <th>Description</th>
  5672. </tr>
  5673. </thead>
  5674. <tbody><tr><td><p>2</p></td>
  5675. <td><p>Error indicates that there is a misconfiguration.</p>
  5676. </td>
  5677. </tr><tr><td><p>0</p></td>
  5678. <td><p>Ready indicates that the client is configured correctly
  5679. and can be used.</p>
  5680. </td>
  5681. </tr><tr><td><p>1</p></td>
  5682. <td><p>Unknown indicates that the client can be used
  5683. but information is missing and it can not be validated.</p>
  5684. </td>
  5685. </tr></tbody>
  5686. </table>
  5687. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  5688. </h3>
  5689. <p>
  5690. (<em>Appears on:</em>
  5691. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5692. </p>
  5693. <p>
  5694. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  5695. with the role and secret stored in a Kubernetes Secret resource.</p>
  5696. </p>
  5697. <table>
  5698. <thead>
  5699. <tr>
  5700. <th>Field</th>
  5701. <th>Description</th>
  5702. </tr>
  5703. </thead>
  5704. <tbody>
  5705. <tr>
  5706. <td>
  5707. <code>path</code></br>
  5708. <em>
  5709. string
  5710. </em>
  5711. </td>
  5712. <td>
  5713. <p>Path where the App Role authentication backend is mounted
  5714. in Vault, e.g: &ldquo;approle&rdquo;</p>
  5715. </td>
  5716. </tr>
  5717. <tr>
  5718. <td>
  5719. <code>roleId</code></br>
  5720. <em>
  5721. string
  5722. </em>
  5723. </td>
  5724. <td>
  5725. <p>RoleID configured in the App Role authentication backend when setting
  5726. up the authentication backend in Vault.</p>
  5727. </td>
  5728. </tr>
  5729. <tr>
  5730. <td>
  5731. <code>secretRef</code></br>
  5732. <em>
  5733. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5734. </em>
  5735. </td>
  5736. <td>
  5737. <p>Reference to a key in a Secret that contains the App Role secret used
  5738. to authenticate with Vault.
  5739. The <code>key</code> field must be specified and denotes which entry within the Secret
  5740. resource is used as the app role secret.</p>
  5741. </td>
  5742. </tr>
  5743. </tbody>
  5744. </table>
  5745. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  5746. </h3>
  5747. <p>
  5748. (<em>Appears on:</em>
  5749. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5750. </p>
  5751. <p>
  5752. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  5753. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>jwt</code> or <code>cert</code>
  5754. can be specified.</p>
  5755. </p>
  5756. <table>
  5757. <thead>
  5758. <tr>
  5759. <th>Field</th>
  5760. <th>Description</th>
  5761. </tr>
  5762. </thead>
  5763. <tbody>
  5764. <tr>
  5765. <td>
  5766. <code>tokenSecretRef</code></br>
  5767. <em>
  5768. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5769. </em>
  5770. </td>
  5771. <td>
  5772. <em>(Optional)</em>
  5773. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  5774. </td>
  5775. </tr>
  5776. <tr>
  5777. <td>
  5778. <code>appRole</code></br>
  5779. <em>
  5780. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  5781. VaultAppRole
  5782. </a>
  5783. </em>
  5784. </td>
  5785. <td>
  5786. <em>(Optional)</em>
  5787. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  5788. with the role and secret stored in a Kubernetes Secret resource.</p>
  5789. </td>
  5790. </tr>
  5791. <tr>
  5792. <td>
  5793. <code>kubernetes</code></br>
  5794. <em>
  5795. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  5796. VaultKubernetesAuth
  5797. </a>
  5798. </em>
  5799. </td>
  5800. <td>
  5801. <em>(Optional)</em>
  5802. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  5803. token stored in the named Secret resource to the Vault server.</p>
  5804. </td>
  5805. </tr>
  5806. <tr>
  5807. <td>
  5808. <code>ldap</code></br>
  5809. <em>
  5810. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  5811. VaultLdapAuth
  5812. </a>
  5813. </em>
  5814. </td>
  5815. <td>
  5816. <em>(Optional)</em>
  5817. <p>Ldap authenticates with Vault by passing username/password pair using
  5818. the LDAP authentication method</p>
  5819. </td>
  5820. </tr>
  5821. <tr>
  5822. <td>
  5823. <code>jwt</code></br>
  5824. <em>
  5825. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  5826. VaultJwtAuth
  5827. </a>
  5828. </em>
  5829. </td>
  5830. <td>
  5831. <em>(Optional)</em>
  5832. <p>Jwt authenticates with Vault by passing role and JWT token using the
  5833. JWT/OIDC authentication method</p>
  5834. </td>
  5835. </tr>
  5836. <tr>
  5837. <td>
  5838. <code>cert</code></br>
  5839. <em>
  5840. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  5841. VaultCertAuth
  5842. </a>
  5843. </em>
  5844. </td>
  5845. <td>
  5846. <em>(Optional)</em>
  5847. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  5848. Cert authentication method</p>
  5849. </td>
  5850. </tr>
  5851. </tbody>
  5852. </table>
  5853. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  5854. </h3>
  5855. <p>
  5856. (<em>Appears on:</em>
  5857. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5858. </p>
  5859. <p>
  5860. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5861. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  5862. </p>
  5863. <table>
  5864. <thead>
  5865. <tr>
  5866. <th>Field</th>
  5867. <th>Description</th>
  5868. </tr>
  5869. </thead>
  5870. <tbody>
  5871. <tr>
  5872. <td>
  5873. <code>clientCert</code></br>
  5874. <em>
  5875. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5876. </em>
  5877. </td>
  5878. <td>
  5879. <em>(Optional)</em>
  5880. <p>ClientCert is a certificate to authenticate using the Cert Vault
  5881. authentication method</p>
  5882. </td>
  5883. </tr>
  5884. <tr>
  5885. <td>
  5886. <code>secretRef</code></br>
  5887. <em>
  5888. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5889. </em>
  5890. </td>
  5891. <td>
  5892. <p>SecretRef to a key in a Secret resource containing client private key to
  5893. authenticate with Vault using the Cert authentication method</p>
  5894. </td>
  5895. </tr>
  5896. </tbody>
  5897. </table>
  5898. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  5899. </h3>
  5900. <p>
  5901. (<em>Appears on:</em>
  5902. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5903. </p>
  5904. <p>
  5905. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5906. method, with the role name and a token stored in a Kubernetes Secret resource or
  5907. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  5908. </p>
  5909. <table>
  5910. <thead>
  5911. <tr>
  5912. <th>Field</th>
  5913. <th>Description</th>
  5914. </tr>
  5915. </thead>
  5916. <tbody>
  5917. <tr>
  5918. <td>
  5919. <code>path</code></br>
  5920. <em>
  5921. string
  5922. </em>
  5923. </td>
  5924. <td>
  5925. <p>Path where the JWT authentication backend is mounted
  5926. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  5927. </td>
  5928. </tr>
  5929. <tr>
  5930. <td>
  5931. <code>role</code></br>
  5932. <em>
  5933. string
  5934. </em>
  5935. </td>
  5936. <td>
  5937. <em>(Optional)</em>
  5938. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  5939. authentication method</p>
  5940. </td>
  5941. </tr>
  5942. <tr>
  5943. <td>
  5944. <code>secretRef</code></br>
  5945. <em>
  5946. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <em>(Optional)</em>
  5951. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  5952. authenticate with Vault using the JWT/OIDC authentication method.</p>
  5953. </td>
  5954. </tr>
  5955. <tr>
  5956. <td>
  5957. <code>kubernetesServiceAccountToken</code></br>
  5958. <em>
  5959. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  5960. VaultKubernetesServiceAccountTokenAuth
  5961. </a>
  5962. </em>
  5963. </td>
  5964. <td>
  5965. <em>(Optional)</em>
  5966. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  5967. a token for with the <code>TokenRequest</code> API.</p>
  5968. </td>
  5969. </tr>
  5970. </tbody>
  5971. </table>
  5972. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  5973. (<code>string</code> alias)</p></h3>
  5974. <p>
  5975. (<em>Appears on:</em>
  5976. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5977. </p>
  5978. <p>
  5979. </p>
  5980. <table>
  5981. <thead>
  5982. <tr>
  5983. <th>Value</th>
  5984. <th>Description</th>
  5985. </tr>
  5986. </thead>
  5987. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5988. <td></td>
  5989. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5990. <td></td>
  5991. </tr></tbody>
  5992. </table>
  5993. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  5994. </h3>
  5995. <p>
  5996. (<em>Appears on:</em>
  5997. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5998. </p>
  5999. <p>
  6000. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  6001. a Secret.</p>
  6002. </p>
  6003. <table>
  6004. <thead>
  6005. <tr>
  6006. <th>Field</th>
  6007. <th>Description</th>
  6008. </tr>
  6009. </thead>
  6010. <tbody>
  6011. <tr>
  6012. <td>
  6013. <code>mountPath</code></br>
  6014. <em>
  6015. string
  6016. </em>
  6017. </td>
  6018. <td>
  6019. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  6020. &ldquo;kubernetes&rdquo;</p>
  6021. </td>
  6022. </tr>
  6023. <tr>
  6024. <td>
  6025. <code>serviceAccountRef</code></br>
  6026. <em>
  6027. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6028. </em>
  6029. </td>
  6030. <td>
  6031. <em>(Optional)</em>
  6032. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  6033. If the service account is specified, the service account secret token JWT will be used
  6034. for authenticating with Vault. If the service account selector is not supplied,
  6035. the secretRef will be used instead.</p>
  6036. </td>
  6037. </tr>
  6038. <tr>
  6039. <td>
  6040. <code>secretRef</code></br>
  6041. <em>
  6042. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6043. </em>
  6044. </td>
  6045. <td>
  6046. <em>(Optional)</em>
  6047. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  6048. for authenticating with Vault. If a name is specified without a key,
  6049. <code>token</code> is the default. If one is not specified, the one bound to
  6050. the controller will be used.</p>
  6051. </td>
  6052. </tr>
  6053. <tr>
  6054. <td>
  6055. <code>role</code></br>
  6056. <em>
  6057. string
  6058. </em>
  6059. </td>
  6060. <td>
  6061. <p>A required field containing the Vault Role to assume. A Role binds a
  6062. Kubernetes ServiceAccount with a set of Vault policies.</p>
  6063. </td>
  6064. </tr>
  6065. </tbody>
  6066. </table>
  6067. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  6068. </h3>
  6069. <p>
  6070. (<em>Appears on:</em>
  6071. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  6072. </p>
  6073. <p>
  6074. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  6075. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  6076. </p>
  6077. <table>
  6078. <thead>
  6079. <tr>
  6080. <th>Field</th>
  6081. <th>Description</th>
  6082. </tr>
  6083. </thead>
  6084. <tbody>
  6085. <tr>
  6086. <td>
  6087. <code>serviceAccountRef</code></br>
  6088. <em>
  6089. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6090. </em>
  6091. </td>
  6092. <td>
  6093. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  6094. </td>
  6095. </tr>
  6096. <tr>
  6097. <td>
  6098. <code>audiences</code></br>
  6099. <em>
  6100. []string
  6101. </em>
  6102. </td>
  6103. <td>
  6104. <em>(Optional)</em>
  6105. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  6106. account token for the service account referenced by <code>serviceAccountRef</code>.
  6107. Defaults to a single audience <code>vault</code> it not specified.
  6108. Deprecated: use serviceAccountRef.Audiences instead</p>
  6109. </td>
  6110. </tr>
  6111. <tr>
  6112. <td>
  6113. <code>expirationSeconds</code></br>
  6114. <em>
  6115. int64
  6116. </em>
  6117. </td>
  6118. <td>
  6119. <em>(Optional)</em>
  6120. <p>Optional expiration time in seconds that will be used to request a temporary
  6121. Kubernetes service account token for the service account referenced by
  6122. <code>serviceAccountRef</code>.
  6123. Deprecated: this will be removed in the future.
  6124. Defaults to 10 minutes.</p>
  6125. </td>
  6126. </tr>
  6127. </tbody>
  6128. </table>
  6129. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  6130. </h3>
  6131. <p>
  6132. (<em>Appears on:</em>
  6133. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6134. </p>
  6135. <p>
  6136. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  6137. with the username and password stored in a Kubernetes Secret resource.</p>
  6138. </p>
  6139. <table>
  6140. <thead>
  6141. <tr>
  6142. <th>Field</th>
  6143. <th>Description</th>
  6144. </tr>
  6145. </thead>
  6146. <tbody>
  6147. <tr>
  6148. <td>
  6149. <code>path</code></br>
  6150. <em>
  6151. string
  6152. </em>
  6153. </td>
  6154. <td>
  6155. <p>Path where the LDAP authentication backend is mounted
  6156. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  6157. </td>
  6158. </tr>
  6159. <tr>
  6160. <td>
  6161. <code>username</code></br>
  6162. <em>
  6163. string
  6164. </em>
  6165. </td>
  6166. <td>
  6167. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  6168. authentication method</p>
  6169. </td>
  6170. </tr>
  6171. <tr>
  6172. <td>
  6173. <code>secretRef</code></br>
  6174. <em>
  6175. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6176. </em>
  6177. </td>
  6178. <td>
  6179. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  6180. user used to authenticate with Vault using the LDAP authentication
  6181. method</p>
  6182. </td>
  6183. </tr>
  6184. </tbody>
  6185. </table>
  6186. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  6187. </h3>
  6188. <p>
  6189. (<em>Appears on:</em>
  6190. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6191. </p>
  6192. <p>
  6193. <p>Configures an store to sync secrets using a HashiCorp Vault
  6194. KV backend.</p>
  6195. </p>
  6196. <table>
  6197. <thead>
  6198. <tr>
  6199. <th>Field</th>
  6200. <th>Description</th>
  6201. </tr>
  6202. </thead>
  6203. <tbody>
  6204. <tr>
  6205. <td>
  6206. <code>auth</code></br>
  6207. <em>
  6208. <a href="#external-secrets.io/v1beta1.VaultAuth">
  6209. VaultAuth
  6210. </a>
  6211. </em>
  6212. </td>
  6213. <td>
  6214. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  6215. </td>
  6216. </tr>
  6217. <tr>
  6218. <td>
  6219. <code>server</code></br>
  6220. <em>
  6221. string
  6222. </em>
  6223. </td>
  6224. <td>
  6225. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  6226. </td>
  6227. </tr>
  6228. <tr>
  6229. <td>
  6230. <code>path</code></br>
  6231. <em>
  6232. string
  6233. </em>
  6234. </td>
  6235. <td>
  6236. <em>(Optional)</em>
  6237. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  6238. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  6239. for fetching secrets from Vault is optional and will be appended
  6240. if not present in specified path.</p>
  6241. </td>
  6242. </tr>
  6243. <tr>
  6244. <td>
  6245. <code>version</code></br>
  6246. <em>
  6247. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  6248. VaultKVStoreVersion
  6249. </a>
  6250. </em>
  6251. </td>
  6252. <td>
  6253. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  6254. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  6255. </td>
  6256. </tr>
  6257. <tr>
  6258. <td>
  6259. <code>namespace</code></br>
  6260. <em>
  6261. string
  6262. </em>
  6263. </td>
  6264. <td>
  6265. <em>(Optional)</em>
  6266. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  6267. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  6268. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  6269. </td>
  6270. </tr>
  6271. <tr>
  6272. <td>
  6273. <code>caBundle</code></br>
  6274. <em>
  6275. []byte
  6276. </em>
  6277. </td>
  6278. <td>
  6279. <em>(Optional)</em>
  6280. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  6281. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6282. plain HTTP protocol connection. If not set the system root certificates
  6283. are used to validate the TLS connection.</p>
  6284. </td>
  6285. </tr>
  6286. <tr>
  6287. <td>
  6288. <code>caProvider</code></br>
  6289. <em>
  6290. <a href="#external-secrets.io/v1beta1.CAProvider">
  6291. CAProvider
  6292. </a>
  6293. </em>
  6294. </td>
  6295. <td>
  6296. <em>(Optional)</em>
  6297. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  6298. </td>
  6299. </tr>
  6300. <tr>
  6301. <td>
  6302. <code>readYourWrites</code></br>
  6303. <em>
  6304. bool
  6305. </em>
  6306. </td>
  6307. <td>
  6308. <em>(Optional)</em>
  6309. <p>ReadYourWrites ensures isolated read-after-write semantics by
  6310. providing discovered cluster replication states in each request.
  6311. More information about eventual consistency in Vault can be found here
  6312. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  6313. </td>
  6314. </tr>
  6315. <tr>
  6316. <td>
  6317. <code>forwardInconsistent</code></br>
  6318. <em>
  6319. bool
  6320. </em>
  6321. </td>
  6322. <td>
  6323. <em>(Optional)</em>
  6324. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  6325. leader instead of simply retrying within a loop. This can increase performance if
  6326. the option is enabled serverside.
  6327. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  6328. </td>
  6329. </tr>
  6330. </tbody>
  6331. </table>
  6332. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  6333. </h3>
  6334. <p>
  6335. (<em>Appears on:</em>
  6336. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6337. </p>
  6338. <p>
  6339. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  6340. </p>
  6341. <table>
  6342. <thead>
  6343. <tr>
  6344. <th>Field</th>
  6345. <th>Description</th>
  6346. </tr>
  6347. </thead>
  6348. <tbody>
  6349. <tr>
  6350. <td>
  6351. <code>type</code></br>
  6352. <em>
  6353. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  6354. WebhookCAProviderType
  6355. </a>
  6356. </em>
  6357. </td>
  6358. <td>
  6359. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  6360. </td>
  6361. </tr>
  6362. <tr>
  6363. <td>
  6364. <code>name</code></br>
  6365. <em>
  6366. string
  6367. </em>
  6368. </td>
  6369. <td>
  6370. <p>The name of the object located at the provider type.</p>
  6371. </td>
  6372. </tr>
  6373. <tr>
  6374. <td>
  6375. <code>key</code></br>
  6376. <em>
  6377. string
  6378. </em>
  6379. </td>
  6380. <td>
  6381. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  6382. </td>
  6383. </tr>
  6384. <tr>
  6385. <td>
  6386. <code>namespace</code></br>
  6387. <em>
  6388. string
  6389. </em>
  6390. </td>
  6391. <td>
  6392. <em>(Optional)</em>
  6393. <p>The namespace the Provider type is in.</p>
  6394. </td>
  6395. </tr>
  6396. </tbody>
  6397. </table>
  6398. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  6399. (<code>string</code> alias)</p></h3>
  6400. <p>
  6401. (<em>Appears on:</em>
  6402. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  6403. </p>
  6404. <p>
  6405. </p>
  6406. <table>
  6407. <thead>
  6408. <tr>
  6409. <th>Value</th>
  6410. <th>Description</th>
  6411. </tr>
  6412. </thead>
  6413. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  6414. <td></td>
  6415. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  6416. <td></td>
  6417. </tr></tbody>
  6418. </table>
  6419. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  6420. </h3>
  6421. <p>
  6422. (<em>Appears on:</em>
  6423. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6424. </p>
  6425. <p>
  6426. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  6427. </p>
  6428. <table>
  6429. <thead>
  6430. <tr>
  6431. <th>Field</th>
  6432. <th>Description</th>
  6433. </tr>
  6434. </thead>
  6435. <tbody>
  6436. <tr>
  6437. <td>
  6438. <code>method</code></br>
  6439. <em>
  6440. string
  6441. </em>
  6442. </td>
  6443. <td>
  6444. <p>Webhook Method</p>
  6445. </td>
  6446. </tr>
  6447. <tr>
  6448. <td>
  6449. <code>url</code></br>
  6450. <em>
  6451. string
  6452. </em>
  6453. </td>
  6454. <td>
  6455. <p>Webhook url to call</p>
  6456. </td>
  6457. </tr>
  6458. <tr>
  6459. <td>
  6460. <code>headers</code></br>
  6461. <em>
  6462. map[string]string
  6463. </em>
  6464. </td>
  6465. <td>
  6466. <em>(Optional)</em>
  6467. <p>Headers</p>
  6468. </td>
  6469. </tr>
  6470. <tr>
  6471. <td>
  6472. <code>body</code></br>
  6473. <em>
  6474. string
  6475. </em>
  6476. </td>
  6477. <td>
  6478. <em>(Optional)</em>
  6479. <p>Body</p>
  6480. </td>
  6481. </tr>
  6482. <tr>
  6483. <td>
  6484. <code>timeout</code></br>
  6485. <em>
  6486. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  6487. Kubernetes meta/v1.Duration
  6488. </a>
  6489. </em>
  6490. </td>
  6491. <td>
  6492. <em>(Optional)</em>
  6493. <p>Timeout</p>
  6494. </td>
  6495. </tr>
  6496. <tr>
  6497. <td>
  6498. <code>result</code></br>
  6499. <em>
  6500. <a href="#external-secrets.io/v1beta1.WebhookResult">
  6501. WebhookResult
  6502. </a>
  6503. </em>
  6504. </td>
  6505. <td>
  6506. <p>Result formatting</p>
  6507. </td>
  6508. </tr>
  6509. <tr>
  6510. <td>
  6511. <code>secrets</code></br>
  6512. <em>
  6513. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  6514. []WebhookSecret
  6515. </a>
  6516. </em>
  6517. </td>
  6518. <td>
  6519. <em>(Optional)</em>
  6520. <p>Secrets to fill in templates
  6521. These secrets will be passed to the templating function as key value pairs under the given name</p>
  6522. </td>
  6523. </tr>
  6524. <tr>
  6525. <td>
  6526. <code>caBundle</code></br>
  6527. <em>
  6528. []byte
  6529. </em>
  6530. </td>
  6531. <td>
  6532. <em>(Optional)</em>
  6533. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  6534. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6535. plain HTTP protocol connection. If not set the system root certificates
  6536. are used to validate the TLS connection.</p>
  6537. </td>
  6538. </tr>
  6539. <tr>
  6540. <td>
  6541. <code>caProvider</code></br>
  6542. <em>
  6543. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  6544. WebhookCAProvider
  6545. </a>
  6546. </em>
  6547. </td>
  6548. <td>
  6549. <em>(Optional)</em>
  6550. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  6551. </td>
  6552. </tr>
  6553. </tbody>
  6554. </table>
  6555. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  6556. </h3>
  6557. <p>
  6558. (<em>Appears on:</em>
  6559. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6560. </p>
  6561. <p>
  6562. </p>
  6563. <table>
  6564. <thead>
  6565. <tr>
  6566. <th>Field</th>
  6567. <th>Description</th>
  6568. </tr>
  6569. </thead>
  6570. <tbody>
  6571. <tr>
  6572. <td>
  6573. <code>jsonPath</code></br>
  6574. <em>
  6575. string
  6576. </em>
  6577. </td>
  6578. <td>
  6579. <em>(Optional)</em>
  6580. <p>Json path of return value</p>
  6581. </td>
  6582. </tr>
  6583. </tbody>
  6584. </table>
  6585. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  6586. </h3>
  6587. <p>
  6588. (<em>Appears on:</em>
  6589. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6590. </p>
  6591. <p>
  6592. </p>
  6593. <table>
  6594. <thead>
  6595. <tr>
  6596. <th>Field</th>
  6597. <th>Description</th>
  6598. </tr>
  6599. </thead>
  6600. <tbody>
  6601. <tr>
  6602. <td>
  6603. <code>name</code></br>
  6604. <em>
  6605. string
  6606. </em>
  6607. </td>
  6608. <td>
  6609. <p>Name of this secret in templates</p>
  6610. </td>
  6611. </tr>
  6612. <tr>
  6613. <td>
  6614. <code>secretRef</code></br>
  6615. <em>
  6616. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6617. </em>
  6618. </td>
  6619. <td>
  6620. <p>Secret ref to fill in credentials</p>
  6621. </td>
  6622. </tr>
  6623. </tbody>
  6624. </table>
  6625. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  6626. </h3>
  6627. <p>
  6628. (<em>Appears on:</em>
  6629. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6630. </p>
  6631. <p>
  6632. </p>
  6633. <table>
  6634. <thead>
  6635. <tr>
  6636. <th>Field</th>
  6637. <th>Description</th>
  6638. </tr>
  6639. </thead>
  6640. <tbody>
  6641. <tr>
  6642. <td>
  6643. <code>authorizedKeySecretRef</code></br>
  6644. <em>
  6645. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6646. </em>
  6647. </td>
  6648. <td>
  6649. <em>(Optional)</em>
  6650. <p>The authorized key used for authentication</p>
  6651. </td>
  6652. </tr>
  6653. </tbody>
  6654. </table>
  6655. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  6656. </h3>
  6657. <p>
  6658. (<em>Appears on:</em>
  6659. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6660. </p>
  6661. <p>
  6662. </p>
  6663. <table>
  6664. <thead>
  6665. <tr>
  6666. <th>Field</th>
  6667. <th>Description</th>
  6668. </tr>
  6669. </thead>
  6670. <tbody>
  6671. <tr>
  6672. <td>
  6673. <code>certSecretRef</code></br>
  6674. <em>
  6675. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6676. </em>
  6677. </td>
  6678. <td>
  6679. </td>
  6680. </tr>
  6681. </tbody>
  6682. </table>
  6683. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  6684. </h3>
  6685. <p>
  6686. (<em>Appears on:</em>
  6687. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6688. </p>
  6689. <p>
  6690. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  6691. </p>
  6692. <table>
  6693. <thead>
  6694. <tr>
  6695. <th>Field</th>
  6696. <th>Description</th>
  6697. </tr>
  6698. </thead>
  6699. <tbody>
  6700. <tr>
  6701. <td>
  6702. <code>apiEndpoint</code></br>
  6703. <em>
  6704. string
  6705. </em>
  6706. </td>
  6707. <td>
  6708. <em>(Optional)</em>
  6709. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6710. </td>
  6711. </tr>
  6712. <tr>
  6713. <td>
  6714. <code>auth</code></br>
  6715. <em>
  6716. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  6717. YandexCertificateManagerAuth
  6718. </a>
  6719. </em>
  6720. </td>
  6721. <td>
  6722. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  6723. </td>
  6724. </tr>
  6725. <tr>
  6726. <td>
  6727. <code>caProvider</code></br>
  6728. <em>
  6729. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  6730. YandexCertificateManagerCAProvider
  6731. </a>
  6732. </em>
  6733. </td>
  6734. <td>
  6735. <em>(Optional)</em>
  6736. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6737. </td>
  6738. </tr>
  6739. </tbody>
  6740. </table>
  6741. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  6742. </h3>
  6743. <p>
  6744. (<em>Appears on:</em>
  6745. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6746. </p>
  6747. <p>
  6748. </p>
  6749. <table>
  6750. <thead>
  6751. <tr>
  6752. <th>Field</th>
  6753. <th>Description</th>
  6754. </tr>
  6755. </thead>
  6756. <tbody>
  6757. <tr>
  6758. <td>
  6759. <code>authorizedKeySecretRef</code></br>
  6760. <em>
  6761. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6762. </em>
  6763. </td>
  6764. <td>
  6765. <em>(Optional)</em>
  6766. <p>The authorized key used for authentication</p>
  6767. </td>
  6768. </tr>
  6769. </tbody>
  6770. </table>
  6771. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  6772. </h3>
  6773. <p>
  6774. (<em>Appears on:</em>
  6775. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6776. </p>
  6777. <p>
  6778. </p>
  6779. <table>
  6780. <thead>
  6781. <tr>
  6782. <th>Field</th>
  6783. <th>Description</th>
  6784. </tr>
  6785. </thead>
  6786. <tbody>
  6787. <tr>
  6788. <td>
  6789. <code>certSecretRef</code></br>
  6790. <em>
  6791. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6792. </em>
  6793. </td>
  6794. <td>
  6795. </td>
  6796. </tr>
  6797. </tbody>
  6798. </table>
  6799. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  6800. </h3>
  6801. <p>
  6802. (<em>Appears on:</em>
  6803. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6804. </p>
  6805. <p>
  6806. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  6807. </p>
  6808. <table>
  6809. <thead>
  6810. <tr>
  6811. <th>Field</th>
  6812. <th>Description</th>
  6813. </tr>
  6814. </thead>
  6815. <tbody>
  6816. <tr>
  6817. <td>
  6818. <code>apiEndpoint</code></br>
  6819. <em>
  6820. string
  6821. </em>
  6822. </td>
  6823. <td>
  6824. <em>(Optional)</em>
  6825. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6826. </td>
  6827. </tr>
  6828. <tr>
  6829. <td>
  6830. <code>auth</code></br>
  6831. <em>
  6832. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  6833. YandexLockboxAuth
  6834. </a>
  6835. </em>
  6836. </td>
  6837. <td>
  6838. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  6839. </td>
  6840. </tr>
  6841. <tr>
  6842. <td>
  6843. <code>caProvider</code></br>
  6844. <em>
  6845. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  6846. YandexLockboxCAProvider
  6847. </a>
  6848. </em>
  6849. </td>
  6850. <td>
  6851. <em>(Optional)</em>
  6852. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6853. </td>
  6854. </tr>
  6855. </tbody>
  6856. </table>
  6857. <hr/>
  6858. <p><em>
  6859. Generated with <code>gen-crd-api-reference-docs</code>.
  6860. </em></p>
  6861. </article>
  6862. </div>
  6863. </div>
  6864. </main>
  6865. <footer class="md-footer">
  6866. <div class="md-footer-meta md-typeset">
  6867. <div class="md-footer-meta__inner md-grid">
  6868. <div class="md-copyright">
  6869. <div class="md-copyright__highlight">
  6870. &copy; 2023 The external-secrets Authors.<br/>
  6871. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  6872. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  6873. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  6874. </div>
  6875. Made with
  6876. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  6877. Material for MkDocs
  6878. </a>
  6879. </div>
  6880. </div>
  6881. </div>
  6882. </footer>
  6883. </div>
  6884. <div class="md-dialog" data-md-component="dialog">
  6885. <div class="md-dialog__inner md-typeset"></div>
  6886. </div>
  6887. <script id="__config" type="application/json">{"base": "..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../assets/javascripts/workers/search.208ed371.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  6888. <script src="../assets/javascripts/bundle.fac441b0.min.js"></script>
  6889. </body>
  6890. </html>