index.html 223 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448
  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="prev" href="../generator/webhook/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.5.3, mkdocs-material-9.5.17">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.bcfcd587.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <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">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <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>
  16. <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>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. </div>
  25. <div data-md-component="announce">
  26. </div>
  27. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  28. <aside class="md-banner md-banner--warning">
  29. <div class="md-banner__inner md-grid md-typeset">
  30. You're not viewing the latest version.
  31. <a href="../../..">
  32. <strong>Click here to go to latest.</strong>
  33. </a>
  34. </div>
  35. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  36. </aside>
  37. </div>
  38. <header class="md-header" data-md-component="header">
  39. <nav class="md-header__inner md-grid" aria-label="Header">
  40. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  41. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  42. </a>
  43. <label class="md-header__button md-icon" for="__drawer">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  45. </label>
  46. <div class="md-header__title" data-md-component="header-title">
  47. <div class="md-header__ellipsis">
  48. <div class="md-header__topic">
  49. <span class="md-ellipsis">
  50. External Secrets Operator
  51. </span>
  52. </div>
  53. <div class="md-header__topic" data-md-component="header-topic">
  54. <span class="md-ellipsis">
  55. API specification
  56. </span>
  57. </div>
  58. </div>
  59. </div>
  60. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  61. <label class="md-header__button md-icon" for="__search">
  62. <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>
  63. </label>
  64. <div class="md-search" data-md-component="search" role="dialog">
  65. <label class="md-search__overlay" for="__search"></label>
  66. <div class="md-search__inner" role="search">
  67. <form class="md-search__form" name="search">
  68. <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>
  69. <label class="md-search__icon md-icon" for="__search">
  70. <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>
  71. <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>
  72. </label>
  73. <nav class="md-search__options" aria-label="Search">
  74. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  75. <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>
  76. </button>
  77. </nav>
  78. </form>
  79. <div class="md-search__output">
  80. <div class="md-search__scrollwrap" data-md-scrollfix>
  81. <div class="md-search-result" data-md-component="search-result">
  82. <div class="md-search-result__meta">
  83. Initializing search
  84. </div>
  85. <ol class="md-search-result__list" role="presentation"></ol>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="md-header__source">
  92. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  93. <div class="md-source__icon md-icon">
  94. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 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>
  95. </div>
  96. <div class="md-source__repository">
  97. External Secrets Operator
  98. </div>
  99. </a>
  100. </div>
  101. </nav>
  102. </header>
  103. <div class="md-container" data-md-component="container">
  104. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  105. <div class="md-grid">
  106. <ul class="md-tabs__list">
  107. <li class="md-tabs__item">
  108. <a href="../.." class="md-tabs__link">
  109. Introduction
  110. </a>
  111. </li>
  112. <li class="md-tabs__item md-tabs__item--active">
  113. <a href="../components/" class="md-tabs__link">
  114. API
  115. </a>
  116. </li>
  117. <li class="md-tabs__item">
  118. <a href="../../guides/introduction/" class="md-tabs__link">
  119. Guides
  120. </a>
  121. </li>
  122. <li class="md-tabs__item">
  123. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  124. Provider
  125. </a>
  126. </li>
  127. <li class="md-tabs__item">
  128. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  129. Examples
  130. </a>
  131. </li>
  132. <li class="md-tabs__item">
  133. <a href="../../contributing/devguide/" class="md-tabs__link">
  134. Community
  135. </a>
  136. </li>
  137. <li class="md-tabs__item">
  138. <a href="../../spec/" class="md-tabs__link">
  139. References
  140. </a>
  141. </li>
  142. <li class="md-tabs__item">
  143. <a href="../../contributing-devguide.md" class="md-tabs__link">
  144. Contributing
  145. </a>
  146. </li>
  147. <li class="md-tabs__item">
  148. <a href="../../deprecation-policy.md" class="md-tabs__link">
  149. Deprecation Policy
  150. </a>
  151. </li>
  152. </ul>
  153. </div>
  154. </nav>
  155. <main class="md-main" data-md-component="main">
  156. <div class="md-main__inner md-grid">
  157. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  158. <div class="md-sidebar__scrollwrap">
  159. <div class="md-sidebar__inner">
  160. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  161. <label class="md-nav__title" for="__drawer">
  162. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  163. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  164. </a>
  165. External Secrets Operator
  166. </label>
  167. <div class="md-nav__source">
  168. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  169. <div class="md-source__icon md-icon">
  170. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.1 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>
  171. </div>
  172. <div class="md-source__repository">
  173. External Secrets Operator
  174. </div>
  175. </a>
  176. </div>
  177. <ul class="md-nav__list" data-md-scrollfix>
  178. <li class="md-nav__item md-nav__item--nested">
  179. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  180. <div class="md-nav__link md-nav__container">
  181. <a href="../.." class="md-nav__link ">
  182. <span class="md-ellipsis">
  183. Introduction
  184. </span>
  185. </a>
  186. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  187. <span class="md-nav__icon md-icon"></span>
  188. </label>
  189. </div>
  190. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  191. <label class="md-nav__title" for="__nav_1">
  192. <span class="md-nav__icon md-icon"></span>
  193. Introduction
  194. </label>
  195. <ul class="md-nav__list" data-md-scrollfix>
  196. <li class="md-nav__item">
  197. <a href="../../introduction/overview/" class="md-nav__link">
  198. <span class="md-ellipsis">
  199. Overview
  200. </span>
  201. </a>
  202. </li>
  203. <li class="md-nav__item">
  204. <a href="../../introduction/getting-started/" class="md-nav__link">
  205. <span class="md-ellipsis">
  206. Getting started
  207. </span>
  208. </a>
  209. </li>
  210. <li class="md-nav__item">
  211. <a href="../../introduction/faq/" class="md-nav__link">
  212. <span class="md-ellipsis">
  213. FAQ
  214. </span>
  215. </a>
  216. </li>
  217. <li class="md-nav__item">
  218. <a href="../../introduction/stability-support/" class="md-nav__link">
  219. <span class="md-ellipsis">
  220. Stability and Support
  221. </span>
  222. </a>
  223. </li>
  224. <li class="md-nav__item">
  225. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  226. <span class="md-ellipsis">
  227. Deprecation Policy
  228. </span>
  229. </a>
  230. </li>
  231. </ul>
  232. </nav>
  233. </li>
  234. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  235. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  236. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  237. <span class="md-ellipsis">
  238. API
  239. </span>
  240. <span class="md-nav__icon md-icon"></span>
  241. </label>
  242. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  243. <label class="md-nav__title" for="__nav_2">
  244. <span class="md-nav__icon md-icon"></span>
  245. API
  246. </label>
  247. <ul class="md-nav__list" data-md-scrollfix>
  248. <li class="md-nav__item">
  249. <a href="../components/" class="md-nav__link">
  250. <span class="md-ellipsis">
  251. Components
  252. </span>
  253. </a>
  254. </li>
  255. <li class="md-nav__item md-nav__item--nested">
  256. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  257. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  258. <span class="md-ellipsis">
  259. Core Resources
  260. </span>
  261. <span class="md-nav__icon md-icon"></span>
  262. </label>
  263. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  264. <label class="md-nav__title" for="__nav_2_2">
  265. <span class="md-nav__icon md-icon"></span>
  266. Core Resources
  267. </label>
  268. <ul class="md-nav__list" data-md-scrollfix>
  269. <li class="md-nav__item">
  270. <a href="../externalsecret/" class="md-nav__link">
  271. <span class="md-ellipsis">
  272. ExternalSecret
  273. </span>
  274. </a>
  275. </li>
  276. <li class="md-nav__item">
  277. <a href="../secretstore/" class="md-nav__link">
  278. <span class="md-ellipsis">
  279. SecretStore
  280. </span>
  281. </a>
  282. </li>
  283. <li class="md-nav__item">
  284. <a href="../clustersecretstore/" class="md-nav__link">
  285. <span class="md-ellipsis">
  286. ClusterSecretStore
  287. </span>
  288. </a>
  289. </li>
  290. <li class="md-nav__item">
  291. <a href="../clusterexternalsecret/" class="md-nav__link">
  292. <span class="md-ellipsis">
  293. ClusterExternalSecret
  294. </span>
  295. </a>
  296. </li>
  297. <li class="md-nav__item">
  298. <a href="../pushsecret/" class="md-nav__link">
  299. <span class="md-ellipsis">
  300. PushSecret
  301. </span>
  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_3" >
  309. <div class="md-nav__link md-nav__container">
  310. <a href="../generator/" class="md-nav__link ">
  311. <span class="md-ellipsis">
  312. Generators
  313. </span>
  314. </a>
  315. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  316. <span class="md-nav__icon md-icon"></span>
  317. </label>
  318. </div>
  319. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  320. <label class="md-nav__title" for="__nav_2_3">
  321. <span class="md-nav__icon md-icon"></span>
  322. Generators
  323. </label>
  324. <ul class="md-nav__list" data-md-scrollfix>
  325. <li class="md-nav__item">
  326. <a href="../generator/acr/" class="md-nav__link">
  327. <span class="md-ellipsis">
  328. Azure Container Registry
  329. </span>
  330. </a>
  331. </li>
  332. <li class="md-nav__item">
  333. <a href="../generator/ecr/" class="md-nav__link">
  334. <span class="md-ellipsis">
  335. AWS Elastic Container Registry
  336. </span>
  337. </a>
  338. </li>
  339. <li class="md-nav__item">
  340. <a href="../generator/gcr/" class="md-nav__link">
  341. <span class="md-ellipsis">
  342. Google Container Registry
  343. </span>
  344. </a>
  345. </li>
  346. <li class="md-nav__item">
  347. <a href="../generator/vault/" class="md-nav__link">
  348. <span class="md-ellipsis">
  349. Vault Dynamic Secret
  350. </span>
  351. </a>
  352. </li>
  353. <li class="md-nav__item">
  354. <a href="../generator/password/" class="md-nav__link">
  355. <span class="md-ellipsis">
  356. Password
  357. </span>
  358. </a>
  359. </li>
  360. <li class="md-nav__item">
  361. <a href="../generator/fake/" class="md-nav__link">
  362. <span class="md-ellipsis">
  363. Fake
  364. </span>
  365. </a>
  366. </li>
  367. <li class="md-nav__item">
  368. <a href="../generator/webhook/" class="md-nav__link">
  369. <span class="md-ellipsis">
  370. Webhook
  371. </span>
  372. </a>
  373. </li>
  374. </ul>
  375. </nav>
  376. </li>
  377. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  378. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  379. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  380. <span class="md-ellipsis">
  381. Reference Docs
  382. </span>
  383. <span class="md-nav__icon md-icon"></span>
  384. </label>
  385. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  386. <label class="md-nav__title" for="__nav_2_4">
  387. <span class="md-nav__icon md-icon"></span>
  388. Reference Docs
  389. </label>
  390. <ul class="md-nav__list" data-md-scrollfix>
  391. <li class="md-nav__item md-nav__item--active">
  392. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  393. <a href="./" class="md-nav__link md-nav__link--active">
  394. <span class="md-ellipsis">
  395. API specification
  396. </span>
  397. </a>
  398. </li>
  399. <li class="md-nav__item">
  400. <a href="../controller-options/" class="md-nav__link">
  401. <span class="md-ellipsis">
  402. Controller Options
  403. </span>
  404. </a>
  405. </li>
  406. <li class="md-nav__item">
  407. <a href="../metrics/" class="md-nav__link">
  408. <span class="md-ellipsis">
  409. Metrics
  410. </span>
  411. </a>
  412. </li>
  413. </ul>
  414. </nav>
  415. </li>
  416. </ul>
  417. </nav>
  418. </li>
  419. <li class="md-nav__item md-nav__item--nested">
  420. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  421. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  422. <span class="md-ellipsis">
  423. Guides
  424. </span>
  425. <span class="md-nav__icon md-icon"></span>
  426. </label>
  427. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  428. <label class="md-nav__title" for="__nav_3">
  429. <span class="md-nav__icon md-icon"></span>
  430. Guides
  431. </label>
  432. <ul class="md-nav__list" data-md-scrollfix>
  433. <li class="md-nav__item">
  434. <a href="../../guides/introduction/" class="md-nav__link">
  435. <span class="md-ellipsis">
  436. Introduction
  437. </span>
  438. </a>
  439. </li>
  440. <li class="md-nav__item md-nav__item--nested">
  441. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  442. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  443. <span class="md-ellipsis">
  444. External Secrets
  445. </span>
  446. <span class="md-nav__icon md-icon"></span>
  447. </label>
  448. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  449. <label class="md-nav__title" for="__nav_3_2">
  450. <span class="md-nav__icon md-icon"></span>
  451. External Secrets
  452. </label>
  453. <ul class="md-nav__list" data-md-scrollfix>
  454. <li class="md-nav__item">
  455. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  456. <span class="md-ellipsis">
  457. Extract structured data
  458. </span>
  459. </a>
  460. </li>
  461. <li class="md-nav__item">
  462. <a href="../../guides/getallsecrets/" class="md-nav__link">
  463. <span class="md-ellipsis">
  464. Find Secrets by Name or Metadata
  465. </span>
  466. </a>
  467. </li>
  468. <li class="md-nav__item">
  469. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  470. <span class="md-ellipsis">
  471. Rewriting Keys
  472. </span>
  473. </a>
  474. </li>
  475. <li class="md-nav__item md-nav__item--nested">
  476. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  477. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  478. <span class="md-ellipsis">
  479. Advanced Templating
  480. </span>
  481. <span class="md-nav__icon md-icon"></span>
  482. </label>
  483. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  484. <label class="md-nav__title" for="__nav_3_2_4">
  485. <span class="md-nav__icon md-icon"></span>
  486. Advanced Templating
  487. </label>
  488. <ul class="md-nav__list" data-md-scrollfix>
  489. <li class="md-nav__item">
  490. <a href="../../guides/templating/" class="md-nav__link">
  491. <span class="md-ellipsis">
  492. v2
  493. </span>
  494. </a>
  495. </li>
  496. <li class="md-nav__item">
  497. <a href="../../guides/templating-v1/" class="md-nav__link">
  498. <span class="md-ellipsis">
  499. v1
  500. </span>
  501. </a>
  502. </li>
  503. </ul>
  504. </nav>
  505. </li>
  506. <li class="md-nav__item">
  507. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  508. <span class="md-ellipsis">
  509. Kubernetes Secret Types
  510. </span>
  511. </a>
  512. </li>
  513. <li class="md-nav__item">
  514. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Lifecycle: ownership & deletion
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Decoding Strategies
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../../guides/controller-class/" class="md-nav__link">
  529. <span class="md-ellipsis">
  530. Controller Classes
  531. </span>
  532. </a>
  533. </li>
  534. </ul>
  535. </nav>
  536. </li>
  537. <li class="md-nav__item">
  538. <a href="../../guides/generator/" class="md-nav__link">
  539. <span class="md-ellipsis">
  540. Generators
  541. </span>
  542. </a>
  543. </li>
  544. <li class="md-nav__item">
  545. <a href="../../guides/pushsecrets/" class="md-nav__link">
  546. <span class="md-ellipsis">
  547. Push Secrets
  548. </span>
  549. </a>
  550. </li>
  551. <li class="md-nav__item md-nav__item--nested">
  552. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  553. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  554. <span class="md-ellipsis">
  555. Operations
  556. </span>
  557. <span class="md-nav__icon md-icon"></span>
  558. </label>
  559. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  560. <label class="md-nav__title" for="__nav_3_5">
  561. <span class="md-nav__icon md-icon"></span>
  562. Operations
  563. </label>
  564. <ul class="md-nav__list" data-md-scrollfix>
  565. <li class="md-nav__item">
  566. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Multi Tenancy
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/security-best-practices/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Security Best Practices
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/threat-model/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Threat Model
  583. </span>
  584. </a>
  585. </li>
  586. <li class="md-nav__item">
  587. <a href="../../guides/v1beta1/" class="md-nav__link">
  588. <span class="md-ellipsis">
  589. Upgrading to v1beta1
  590. </span>
  591. </a>
  592. </li>
  593. <li class="md-nav__item">
  594. <a href="../../guides/using-latest-image/" class="md-nav__link">
  595. <span class="md-ellipsis">
  596. Using Latest Image
  597. </span>
  598. </a>
  599. </li>
  600. <li class="md-nav__item">
  601. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  602. <span class="md-ellipsis">
  603. Disable Cluster Features
  604. </span>
  605. </a>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. </ul>
  611. </nav>
  612. </li>
  613. <li class="md-nav__item md-nav__item--nested">
  614. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  615. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  616. <span class="md-ellipsis">
  617. Provider
  618. </span>
  619. <span class="md-nav__icon md-icon"></span>
  620. </label>
  621. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  622. <label class="md-nav__title" for="__nav_4">
  623. <span class="md-nav__icon md-icon"></span>
  624. Provider
  625. </label>
  626. <ul class="md-nav__list" data-md-scrollfix>
  627. <li class="md-nav__item">
  628. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  629. <span class="md-ellipsis">
  630. AWS Secrets Manager
  631. </span>
  632. </a>
  633. </li>
  634. <li class="md-nav__item">
  635. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  636. <span class="md-ellipsis">
  637. AWS Parameter Store
  638. </span>
  639. </a>
  640. </li>
  641. <li class="md-nav__item">
  642. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  643. <span class="md-ellipsis">
  644. Azure Key Vault
  645. </span>
  646. </a>
  647. </li>
  648. <li class="md-nav__item">
  649. <a href="../../provider/chef/" class="md-nav__link">
  650. <span class="md-ellipsis">
  651. Chef
  652. </span>
  653. </a>
  654. </li>
  655. <li class="md-nav__item">
  656. <a href="../../provider/conjur/" class="md-nav__link">
  657. <span class="md-ellipsis">
  658. CyberArk Conjur
  659. </span>
  660. </a>
  661. </li>
  662. <li class="md-nav__item">
  663. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  664. <span class="md-ellipsis">
  665. Google Cloud Secret Manager
  666. </span>
  667. </a>
  668. </li>
  669. <li class="md-nav__item">
  670. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  671. <span class="md-ellipsis">
  672. HashiCorp Vault
  673. </span>
  674. </a>
  675. </li>
  676. <li class="md-nav__item">
  677. <a href="../../provider/kubernetes/" class="md-nav__link">
  678. <span class="md-ellipsis">
  679. Kubernetes
  680. </span>
  681. </a>
  682. </li>
  683. <li class="md-nav__item">
  684. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  685. <span class="md-ellipsis">
  686. IBM Secrets Manager
  687. </span>
  688. </a>
  689. </li>
  690. <li class="md-nav__item">
  691. <a href="../../provider/akeyless/" class="md-nav__link">
  692. <span class="md-ellipsis">
  693. Akeyless
  694. </span>
  695. </a>
  696. </li>
  697. <li class="md-nav__item">
  698. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  699. <span class="md-ellipsis">
  700. Yandex Certificate Manager
  701. </span>
  702. </a>
  703. </li>
  704. <li class="md-nav__item">
  705. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  706. <span class="md-ellipsis">
  707. Yandex Lockbox
  708. </span>
  709. </a>
  710. </li>
  711. <li class="md-nav__item">
  712. <a href="../../provider/alibaba/" class="md-nav__link">
  713. <span class="md-ellipsis">
  714. Alibaba Cloud
  715. </span>
  716. </a>
  717. </li>
  718. <li class="md-nav__item">
  719. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  720. <span class="md-ellipsis">
  721. GitLab Variables
  722. </span>
  723. </a>
  724. </li>
  725. <li class="md-nav__item">
  726. <a href="../../provider/oracle-vault/" class="md-nav__link">
  727. <span class="md-ellipsis">
  728. Oracle Vault
  729. </span>
  730. </a>
  731. </li>
  732. <li class="md-nav__item">
  733. <a href="../../provider/1password-automation/" class="md-nav__link">
  734. <span class="md-ellipsis">
  735. 1Password Secrets Automation
  736. </span>
  737. </a>
  738. </li>
  739. <li class="md-nav__item">
  740. <a href="../../provider/webhook/" class="md-nav__link">
  741. <span class="md-ellipsis">
  742. Webhook
  743. </span>
  744. </a>
  745. </li>
  746. <li class="md-nav__item">
  747. <a href="../../provider/fake/" class="md-nav__link">
  748. <span class="md-ellipsis">
  749. Fake
  750. </span>
  751. </a>
  752. </li>
  753. <li class="md-nav__item">
  754. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  755. <span class="md-ellipsis">
  756. senhasegura DevOps Secrets Management (DSM)
  757. </span>
  758. </a>
  759. </li>
  760. <li class="md-nav__item">
  761. <a href="../../provider/doppler/" class="md-nav__link">
  762. <span class="md-ellipsis">
  763. Doppler
  764. </span>
  765. </a>
  766. </li>
  767. <li class="md-nav__item">
  768. <a href="../../provider/keeper-security/" class="md-nav__link">
  769. <span class="md-ellipsis">
  770. Keeper Security
  771. </span>
  772. </a>
  773. </li>
  774. <li class="md-nav__item">
  775. <a href="../../provider/cloak/" class="md-nav__link">
  776. <span class="md-ellipsis">
  777. Cloak End 2 End Encrypted Secrets
  778. </span>
  779. </a>
  780. </li>
  781. <li class="md-nav__item">
  782. <a href="../../provider/scaleway/" class="md-nav__link">
  783. <span class="md-ellipsis">
  784. Scaleway
  785. </span>
  786. </a>
  787. </li>
  788. <li class="md-nav__item">
  789. <a href="../../provider/delinea/" class="md-nav__link">
  790. <span class="md-ellipsis">
  791. Delinea
  792. </span>
  793. </a>
  794. </li>
  795. <li class="md-nav__item">
  796. <a href="../../provider/passbolt/" class="md-nav__link">
  797. <span class="md-ellipsis">
  798. Passbolt
  799. </span>
  800. </a>
  801. </li>
  802. <li class="md-nav__item">
  803. <a href="../../provider/pulumi/" class="md-nav__link">
  804. <span class="md-ellipsis">
  805. Pulumi ESC
  806. </span>
  807. </a>
  808. </li>
  809. <li class="md-nav__item">
  810. <a href="../../provider/onboardbase/" class="md-nav__link">
  811. <span class="md-ellipsis">
  812. Onboardbase
  813. </span>
  814. </a>
  815. </li>
  816. </ul>
  817. </nav>
  818. </li>
  819. <li class="md-nav__item md-nav__item--nested">
  820. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  821. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  822. <span class="md-ellipsis">
  823. Examples
  824. </span>
  825. <span class="md-nav__icon md-icon"></span>
  826. </label>
  827. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  828. <label class="md-nav__title" for="__nav_5">
  829. <span class="md-nav__icon md-icon"></span>
  830. Examples
  831. </label>
  832. <ul class="md-nav__list" data-md-scrollfix>
  833. <li class="md-nav__item">
  834. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  835. <span class="md-ellipsis">
  836. FluxCD
  837. </span>
  838. </a>
  839. </li>
  840. <li class="md-nav__item">
  841. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  842. <span class="md-ellipsis">
  843. Anchore Engine
  844. </span>
  845. </a>
  846. </li>
  847. <li class="md-nav__item">
  848. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  849. <span class="md-ellipsis">
  850. Jenkins
  851. </span>
  852. </a>
  853. </li>
  854. <li class="md-nav__item">
  855. <a href="../../examples/bitwarden/" class="md-nav__link">
  856. <span class="md-ellipsis">
  857. BitWarden
  858. </span>
  859. </a>
  860. </li>
  861. </ul>
  862. </nav>
  863. </li>
  864. <li class="md-nav__item md-nav__item--nested">
  865. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  866. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  867. <span class="md-ellipsis">
  868. Community
  869. </span>
  870. <span class="md-nav__icon md-icon"></span>
  871. </label>
  872. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  873. <label class="md-nav__title" for="__nav_6">
  874. <span class="md-nav__icon md-icon"></span>
  875. Community
  876. </label>
  877. <ul class="md-nav__list" data-md-scrollfix>
  878. <li class="md-nav__item md-nav__item--nested">
  879. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  880. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  881. <span class="md-ellipsis">
  882. Contributing
  883. </span>
  884. <span class="md-nav__icon md-icon"></span>
  885. </label>
  886. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  887. <label class="md-nav__title" for="__nav_6_1">
  888. <span class="md-nav__icon md-icon"></span>
  889. Contributing
  890. </label>
  891. <ul class="md-nav__list" data-md-scrollfix>
  892. <li class="md-nav__item">
  893. <a href="../../contributing/devguide/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Developer guide
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../contributing/process/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Contributing Process
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../contributing/release/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Release Process
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../contributing/coc/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Code of Conduct
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../contributing/roadmap/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Roadmap
  924. </span>
  925. </a>
  926. </li>
  927. </ul>
  928. </nav>
  929. </li>
  930. <li class="md-nav__item md-nav__item--nested">
  931. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  932. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  933. <span class="md-ellipsis">
  934. External Resources
  935. </span>
  936. <span class="md-nav__icon md-icon"></span>
  937. </label>
  938. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  939. <label class="md-nav__title" for="__nav_6_2">
  940. <span class="md-nav__icon md-icon"></span>
  941. External Resources
  942. </label>
  943. <ul class="md-nav__list" data-md-scrollfix>
  944. <li class="md-nav__item">
  945. <a href="../../eso-talks/" class="md-nav__link">
  946. <span class="md-ellipsis">
  947. Talks
  948. </span>
  949. </a>
  950. </li>
  951. <li class="md-nav__item">
  952. <a href="../../eso-demos/" class="md-nav__link">
  953. <span class="md-ellipsis">
  954. Demos
  955. </span>
  956. </a>
  957. </li>
  958. <li class="md-nav__item">
  959. <a href="../../eso-blogs/" class="md-nav__link">
  960. <span class="md-ellipsis">
  961. Blogs
  962. </span>
  963. </a>
  964. </li>
  965. </ul>
  966. </nav>
  967. </li>
  968. <li class="md-nav__item md-nav__item--nested">
  969. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_3" >
  970. <label class="md-nav__link" for="__nav_6_3" id="__nav_6_3_label" tabindex="0">
  971. <span class="md-ellipsis">
  972. AWS
  973. </span>
  974. <span class="md-nav__icon md-icon"></span>
  975. </label>
  976. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_3_label" aria-expanded="false">
  977. <label class="md-nav__title" for="__nav_6_3">
  978. <span class="md-nav__icon md-icon"></span>
  979. AWS
  980. </label>
  981. <ul class="md-nav__list" data-md-scrollfix>
  982. <li class="md-nav__item">
  983. <a href="../../provider-aws-secrets-manager.md" class="md-nav__link">
  984. <span class="md-ellipsis">
  985. Secrets Manager
  986. </span>
  987. </a>
  988. </li>
  989. <li class="md-nav__item">
  990. <a href="../../provider-aws-parameter-store.md" class="md-nav__link">
  991. <span class="md-ellipsis">
  992. Parameter Store
  993. </span>
  994. </a>
  995. </li>
  996. </ul>
  997. </nav>
  998. </li>
  999. <li class="md-nav__item md-nav__item--nested">
  1000. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_4" >
  1001. <label class="md-nav__link" for="__nav_6_4" id="__nav_6_4_label" tabindex="0">
  1002. <span class="md-ellipsis">
  1003. Azure
  1004. </span>
  1005. <span class="md-nav__icon md-icon"></span>
  1006. </label>
  1007. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_4_label" aria-expanded="false">
  1008. <label class="md-nav__title" for="__nav_6_4">
  1009. <span class="md-nav__icon md-icon"></span>
  1010. Azure
  1011. </label>
  1012. <ul class="md-nav__list" data-md-scrollfix>
  1013. <li class="md-nav__item">
  1014. <a href="../../provider-azure-key-vault.md" class="md-nav__link">
  1015. <span class="md-ellipsis">
  1016. Key Vault
  1017. </span>
  1018. </a>
  1019. </li>
  1020. </ul>
  1021. </nav>
  1022. </li>
  1023. <li class="md-nav__item md-nav__item--nested">
  1024. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_5" >
  1025. <label class="md-nav__link" for="__nav_6_5" id="__nav_6_5_label" tabindex="0">
  1026. <span class="md-ellipsis">
  1027. Google
  1028. </span>
  1029. <span class="md-nav__icon md-icon"></span>
  1030. </label>
  1031. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_5_label" aria-expanded="false">
  1032. <label class="md-nav__title" for="__nav_6_5">
  1033. <span class="md-nav__icon md-icon"></span>
  1034. Google
  1035. </label>
  1036. <ul class="md-nav__list" data-md-scrollfix>
  1037. <li class="md-nav__item">
  1038. <a href="../../provider-google-secrets-manager.md" class="md-nav__link">
  1039. <span class="md-ellipsis">
  1040. Secrets Manager
  1041. </span>
  1042. </a>
  1043. </li>
  1044. </ul>
  1045. </nav>
  1046. </li>
  1047. <li class="md-nav__item md-nav__item--nested">
  1048. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_6" >
  1049. <label class="md-nav__link" for="__nav_6_6" id="__nav_6_6_label" tabindex="0">
  1050. <span class="md-ellipsis">
  1051. IBM
  1052. </span>
  1053. <span class="md-nav__icon md-icon"></span>
  1054. </label>
  1055. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_6_label" aria-expanded="false">
  1056. <label class="md-nav__title" for="__nav_6_6">
  1057. <span class="md-nav__icon md-icon"></span>
  1058. IBM
  1059. </label>
  1060. <ul class="md-nav__list" data-md-scrollfix>
  1061. <li class="md-nav__item">
  1062. <a href="../../provider-ibm-secrets-manager.md" class="md-nav__link">
  1063. <span class="md-ellipsis">
  1064. Secrets Manager
  1065. </span>
  1066. </a>
  1067. </li>
  1068. </ul>
  1069. </nav>
  1070. </li>
  1071. <li class="md-nav__item">
  1072. <a href="../../provider-hashicorp-vault.md" class="md-nav__link">
  1073. <span class="md-ellipsis">
  1074. HashiCorp Vault
  1075. </span>
  1076. </a>
  1077. </li>
  1078. <li class="md-nav__item md-nav__item--nested">
  1079. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_8" >
  1080. <label class="md-nav__link" for="__nav_6_8" id="__nav_6_8_label" tabindex="0">
  1081. <span class="md-ellipsis">
  1082. Yandex
  1083. </span>
  1084. <span class="md-nav__icon md-icon"></span>
  1085. </label>
  1086. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_8_label" aria-expanded="false">
  1087. <label class="md-nav__title" for="__nav_6_8">
  1088. <span class="md-nav__icon md-icon"></span>
  1089. Yandex
  1090. </label>
  1091. <ul class="md-nav__list" data-md-scrollfix>
  1092. <li class="md-nav__item">
  1093. <a href="../../provider-yandex-lockbox.md" class="md-nav__link">
  1094. <span class="md-ellipsis">
  1095. Lockbox
  1096. </span>
  1097. </a>
  1098. </li>
  1099. </ul>
  1100. </nav>
  1101. </li>
  1102. <li class="md-nav__item">
  1103. <a href="../../provider-passworddepot/" class="md-nav__link">
  1104. <span class="md-ellipsis">
  1105. Password Depot
  1106. </span>
  1107. </a>
  1108. </li>
  1109. <li class="md-nav__item md-nav__item--nested">
  1110. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_10" >
  1111. <label class="md-nav__link" for="__nav_6_10" id="__nav_6_10_label" tabindex="0">
  1112. <span class="md-ellipsis">
  1113. Gitlab
  1114. </span>
  1115. <span class="md-nav__icon md-icon"></span>
  1116. </label>
  1117. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_10_label" aria-expanded="false">
  1118. <label class="md-nav__title" for="__nav_6_10">
  1119. <span class="md-nav__icon md-icon"></span>
  1120. Gitlab
  1121. </label>
  1122. <ul class="md-nav__list" data-md-scrollfix>
  1123. <li class="md-nav__item">
  1124. <a href="../../provider-gitlab-project-variables.md" class="md-nav__link">
  1125. <span class="md-ellipsis">
  1126. Gitlab Project Variables
  1127. </span>
  1128. </a>
  1129. </li>
  1130. </ul>
  1131. </nav>
  1132. </li>
  1133. <li class="md-nav__item md-nav__item--nested">
  1134. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_11" >
  1135. <label class="md-nav__link" for="__nav_6_11" id="__nav_6_11_label" tabindex="0">
  1136. <span class="md-ellipsis">
  1137. Oracle
  1138. </span>
  1139. <span class="md-nav__icon md-icon"></span>
  1140. </label>
  1141. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_11_label" aria-expanded="false">
  1142. <label class="md-nav__title" for="__nav_6_11">
  1143. <span class="md-nav__icon md-icon"></span>
  1144. Oracle
  1145. </label>
  1146. <ul class="md-nav__list" data-md-scrollfix>
  1147. <li class="md-nav__item">
  1148. <a href="../../provider-oracle-vault.md" class="md-nav__link">
  1149. <span class="md-ellipsis">
  1150. Oracle Vault
  1151. </span>
  1152. </a>
  1153. </li>
  1154. </ul>
  1155. </nav>
  1156. </li>
  1157. </ul>
  1158. </nav>
  1159. </li>
  1160. <li class="md-nav__item md-nav__item--nested">
  1161. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_7" >
  1162. <label class="md-nav__link" for="__nav_7" id="__nav_7_label" tabindex="0">
  1163. <span class="md-ellipsis">
  1164. References
  1165. </span>
  1166. <span class="md-nav__icon md-icon"></span>
  1167. </label>
  1168. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  1169. <label class="md-nav__title" for="__nav_7">
  1170. <span class="md-nav__icon md-icon"></span>
  1171. References
  1172. </label>
  1173. <ul class="md-nav__list" data-md-scrollfix>
  1174. <li class="md-nav__item">
  1175. <a href="../../spec/" class="md-nav__link">
  1176. <span class="md-ellipsis">
  1177. API specification
  1178. </span>
  1179. </a>
  1180. </li>
  1181. </ul>
  1182. </nav>
  1183. </li>
  1184. <li class="md-nav__item md-nav__item--nested">
  1185. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_8" >
  1186. <label class="md-nav__link" for="__nav_8" id="__nav_8_label" tabindex="0">
  1187. <span class="md-ellipsis">
  1188. Contributing
  1189. </span>
  1190. <span class="md-nav__icon md-icon"></span>
  1191. </label>
  1192. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_8_label" aria-expanded="false">
  1193. <label class="md-nav__title" for="__nav_8">
  1194. <span class="md-nav__icon md-icon"></span>
  1195. Contributing
  1196. </label>
  1197. <ul class="md-nav__list" data-md-scrollfix>
  1198. <li class="md-nav__item">
  1199. <a href="../../contributing-devguide.md" class="md-nav__link">
  1200. <span class="md-ellipsis">
  1201. Developer guide
  1202. </span>
  1203. </a>
  1204. </li>
  1205. <li class="md-nav__item">
  1206. <a href="../../contributing-process.md" class="md-nav__link">
  1207. <span class="md-ellipsis">
  1208. Contributing Process
  1209. </span>
  1210. </a>
  1211. </li>
  1212. <li class="md-nav__item">
  1213. <a href="../../contributing-coc.md" class="md-nav__link">
  1214. <span class="md-ellipsis">
  1215. Code of Conduct
  1216. </span>
  1217. </a>
  1218. </li>
  1219. </ul>
  1220. </nav>
  1221. </li>
  1222. <li class="md-nav__item">
  1223. <a href="../../deprecation-policy.md" class="md-nav__link">
  1224. <span class="md-ellipsis">
  1225. Deprecation Policy
  1226. </span>
  1227. </a>
  1228. </li>
  1229. </ul>
  1230. </nav>
  1231. </div>
  1232. </div>
  1233. </div>
  1234. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1235. <div class="md-sidebar__scrollwrap">
  1236. <div class="md-sidebar__inner">
  1237. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1238. </nav>
  1239. </div>
  1240. </div>
  1241. </div>
  1242. <div class="md-content" data-md-component="content">
  1243. <article class="md-content__inner md-typeset">
  1244. <h1>API specification</h1>
  1245. <p>Packages:</p>
  1246. <ul>
  1247. <li>
  1248. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  1249. </li>
  1250. </ul>
  1251. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  1252. <p>
  1253. <p>Package v1beta1 contains resources for external-secrets</p>
  1254. </p>
  1255. <p>Resource Types:</p>
  1256. <ul></ul>
  1257. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  1258. </h3>
  1259. <p>
  1260. (<em>Appears on:</em>
  1261. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1262. </p>
  1263. <p>
  1264. <p>AWSAuth tells the controller how to do authentication with aws.
  1265. Only one of secretRef or jwt can be specified.
  1266. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1267. </p>
  1268. <table>
  1269. <thead>
  1270. <tr>
  1271. <th>Field</th>
  1272. <th>Description</th>
  1273. </tr>
  1274. </thead>
  1275. <tbody>
  1276. <tr>
  1277. <td>
  1278. <code>secretRef</code></br>
  1279. <em>
  1280. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  1281. AWSAuthSecretRef
  1282. </a>
  1283. </em>
  1284. </td>
  1285. <td>
  1286. <em>(Optional)</em>
  1287. </td>
  1288. </tr>
  1289. <tr>
  1290. <td>
  1291. <code>jwt</code></br>
  1292. <em>
  1293. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  1294. AWSJWTAuth
  1295. </a>
  1296. </em>
  1297. </td>
  1298. <td>
  1299. <em>(Optional)</em>
  1300. </td>
  1301. </tr>
  1302. </tbody>
  1303. </table>
  1304. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  1305. </h3>
  1306. <p>
  1307. (<em>Appears on:</em>
  1308. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1309. </p>
  1310. <p>
  1311. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1312. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1313. </p>
  1314. <table>
  1315. <thead>
  1316. <tr>
  1317. <th>Field</th>
  1318. <th>Description</th>
  1319. </tr>
  1320. </thead>
  1321. <tbody>
  1322. <tr>
  1323. <td>
  1324. <code>accessKeyIDSecretRef</code></br>
  1325. <em>
  1326. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1327. External Secrets meta/v1.SecretKeySelector
  1328. </a>
  1329. </em>
  1330. </td>
  1331. <td>
  1332. <p>The AccessKeyID is used for authentication</p>
  1333. </td>
  1334. </tr>
  1335. <tr>
  1336. <td>
  1337. <code>secretAccessKeySecretRef</code></br>
  1338. <em>
  1339. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1340. External Secrets meta/v1.SecretKeySelector
  1341. </a>
  1342. </em>
  1343. </td>
  1344. <td>
  1345. <p>The SecretAccessKey is used for authentication</p>
  1346. </td>
  1347. </tr>
  1348. <tr>
  1349. <td>
  1350. <code>sessionTokenSecretRef</code></br>
  1351. <em>
  1352. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1353. External Secrets meta/v1.SecretKeySelector
  1354. </a>
  1355. </em>
  1356. </td>
  1357. <td>
  1358. <p>The SessionToken used for authentication
  1359. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1360. 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>
  1361. </td>
  1362. </tr>
  1363. </tbody>
  1364. </table>
  1365. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  1366. </h3>
  1367. <p>
  1368. (<em>Appears on:</em>
  1369. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1370. </p>
  1371. <p>
  1372. <p>Authenticate against AWS using service account tokens.</p>
  1373. </p>
  1374. <table>
  1375. <thead>
  1376. <tr>
  1377. <th>Field</th>
  1378. <th>Description</th>
  1379. </tr>
  1380. </thead>
  1381. <tbody>
  1382. <tr>
  1383. <td>
  1384. <code>serviceAccountRef</code></br>
  1385. <em>
  1386. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1387. External Secrets meta/v1.ServiceAccountSelector
  1388. </a>
  1389. </em>
  1390. </td>
  1391. <td>
  1392. </td>
  1393. </tr>
  1394. </tbody>
  1395. </table>
  1396. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  1397. </h3>
  1398. <p>
  1399. (<em>Appears on:</em>
  1400. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1401. </p>
  1402. <p>
  1403. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1404. </p>
  1405. <table>
  1406. <thead>
  1407. <tr>
  1408. <th>Field</th>
  1409. <th>Description</th>
  1410. </tr>
  1411. </thead>
  1412. <tbody>
  1413. <tr>
  1414. <td>
  1415. <code>service</code></br>
  1416. <em>
  1417. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  1418. AWSServiceType
  1419. </a>
  1420. </em>
  1421. </td>
  1422. <td>
  1423. <p>Service defines which service should be used to fetch the secrets</p>
  1424. </td>
  1425. </tr>
  1426. <tr>
  1427. <td>
  1428. <code>auth</code></br>
  1429. <em>
  1430. <a href="#external-secrets.io/v1beta1.AWSAuth">
  1431. AWSAuth
  1432. </a>
  1433. </em>
  1434. </td>
  1435. <td>
  1436. <em>(Optional)</em>
  1437. <p>Auth defines the information necessary to authenticate against AWS
  1438. if not set aws sdk will infer credentials from your environment
  1439. 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>
  1440. </td>
  1441. </tr>
  1442. <tr>
  1443. <td>
  1444. <code>role</code></br>
  1445. <em>
  1446. string
  1447. </em>
  1448. </td>
  1449. <td>
  1450. <em>(Optional)</em>
  1451. <p>Role is a Role ARN which the provider will assume</p>
  1452. </td>
  1453. </tr>
  1454. <tr>
  1455. <td>
  1456. <code>region</code></br>
  1457. <em>
  1458. string
  1459. </em>
  1460. </td>
  1461. <td>
  1462. <p>AWS Region to be used for the provider</p>
  1463. </td>
  1464. </tr>
  1465. <tr>
  1466. <td>
  1467. <code>additionalRoles</code></br>
  1468. <em>
  1469. []string
  1470. </em>
  1471. </td>
  1472. <td>
  1473. <em>(Optional)</em>
  1474. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1475. </td>
  1476. </tr>
  1477. <tr>
  1478. <td>
  1479. <code>externalID</code></br>
  1480. <em>
  1481. string
  1482. </em>
  1483. </td>
  1484. <td>
  1485. <p>AWS External ID set on assumed IAM roles</p>
  1486. </td>
  1487. </tr>
  1488. <tr>
  1489. <td>
  1490. <code>sessionTags</code></br>
  1491. <em>
  1492. <a href="#external-secrets.io/v1beta1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag">
  1493. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag
  1494. </a>
  1495. </em>
  1496. </td>
  1497. <td>
  1498. <em>(Optional)</em>
  1499. <p>AWS STS assume role session tags</p>
  1500. </td>
  1501. </tr>
  1502. <tr>
  1503. <td>
  1504. <code>secretsManager</code></br>
  1505. <em>
  1506. <a href="#external-secrets.io/v1beta1.SecretsManager">
  1507. SecretsManager
  1508. </a>
  1509. </em>
  1510. </td>
  1511. <td>
  1512. <em>(Optional)</em>
  1513. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1514. </td>
  1515. </tr>
  1516. <tr>
  1517. <td>
  1518. <code>transitiveTagKeys</code></br>
  1519. <em>
  1520. []*string
  1521. </em>
  1522. </td>
  1523. <td>
  1524. <em>(Optional)</em>
  1525. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1526. </td>
  1527. </tr>
  1528. </tbody>
  1529. </table>
  1530. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  1531. (<code>string</code> alias)</p></h3>
  1532. <p>
  1533. (<em>Appears on:</em>
  1534. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1535. </p>
  1536. <p>
  1537. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1538. </p>
  1539. <table>
  1540. <thead>
  1541. <tr>
  1542. <th>Value</th>
  1543. <th>Description</th>
  1544. </tr>
  1545. </thead>
  1546. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1547. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1548. 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>
  1549. </td>
  1550. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1551. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1552. 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>
  1553. </td>
  1554. </tr></tbody>
  1555. </table>
  1556. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  1557. </h3>
  1558. <p>
  1559. (<em>Appears on:</em>
  1560. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  1561. </p>
  1562. <p>
  1563. </p>
  1564. <table>
  1565. <thead>
  1566. <tr>
  1567. <th>Field</th>
  1568. <th>Description</th>
  1569. </tr>
  1570. </thead>
  1571. <tbody>
  1572. <tr>
  1573. <td>
  1574. <code>secretRef</code></br>
  1575. <em>
  1576. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1577. AkeylessAuthSecretRef
  1578. </a>
  1579. </em>
  1580. </td>
  1581. <td>
  1582. <em>(Optional)</em>
  1583. <p>Reference to a Secret that contains the details
  1584. to authenticate with Akeyless.</p>
  1585. </td>
  1586. </tr>
  1587. <tr>
  1588. <td>
  1589. <code>kubernetesAuth</code></br>
  1590. <em>
  1591. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1592. AkeylessKubernetesAuth
  1593. </a>
  1594. </em>
  1595. </td>
  1596. <td>
  1597. <em>(Optional)</em>
  1598. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1599. token stored in the named Secret resource.</p>
  1600. </td>
  1601. </tr>
  1602. </tbody>
  1603. </table>
  1604. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1605. </h3>
  1606. <p>
  1607. (<em>Appears on:</em>
  1608. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1609. </p>
  1610. <p>
  1611. <p>AkeylessAuthSecretRef
  1612. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1613. </p>
  1614. <table>
  1615. <thead>
  1616. <tr>
  1617. <th>Field</th>
  1618. <th>Description</th>
  1619. </tr>
  1620. </thead>
  1621. <tbody>
  1622. <tr>
  1623. <td>
  1624. <code>accessID</code></br>
  1625. <em>
  1626. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1627. External Secrets meta/v1.SecretKeySelector
  1628. </a>
  1629. </em>
  1630. </td>
  1631. <td>
  1632. <p>The SecretAccessID is used for authentication</p>
  1633. </td>
  1634. </tr>
  1635. <tr>
  1636. <td>
  1637. <code>accessType</code></br>
  1638. <em>
  1639. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1640. External Secrets meta/v1.SecretKeySelector
  1641. </a>
  1642. </em>
  1643. </td>
  1644. <td>
  1645. </td>
  1646. </tr>
  1647. <tr>
  1648. <td>
  1649. <code>accessTypeParam</code></br>
  1650. <em>
  1651. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1652. External Secrets meta/v1.SecretKeySelector
  1653. </a>
  1654. </em>
  1655. </td>
  1656. <td>
  1657. </td>
  1658. </tr>
  1659. </tbody>
  1660. </table>
  1661. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1662. </h3>
  1663. <p>
  1664. (<em>Appears on:</em>
  1665. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1666. </p>
  1667. <p>
  1668. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1669. </p>
  1670. <table>
  1671. <thead>
  1672. <tr>
  1673. <th>Field</th>
  1674. <th>Description</th>
  1675. </tr>
  1676. </thead>
  1677. <tbody>
  1678. <tr>
  1679. <td>
  1680. <code>accessID</code></br>
  1681. <em>
  1682. string
  1683. </em>
  1684. </td>
  1685. <td>
  1686. <p>the Akeyless Kubernetes auth-method access-id</p>
  1687. </td>
  1688. </tr>
  1689. <tr>
  1690. <td>
  1691. <code>k8sConfName</code></br>
  1692. <em>
  1693. string
  1694. </em>
  1695. </td>
  1696. <td>
  1697. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1698. </td>
  1699. </tr>
  1700. <tr>
  1701. <td>
  1702. <code>serviceAccountRef</code></br>
  1703. <em>
  1704. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1705. External Secrets meta/v1.ServiceAccountSelector
  1706. </a>
  1707. </em>
  1708. </td>
  1709. <td>
  1710. <em>(Optional)</em>
  1711. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1712. If the service account is specified, the service account secret token JWT will be used
  1713. for authenticating with Akeyless. If the service account selector is not supplied,
  1714. the secretRef will be used instead.</p>
  1715. </td>
  1716. </tr>
  1717. <tr>
  1718. <td>
  1719. <code>secretRef</code></br>
  1720. <em>
  1721. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1722. External Secrets meta/v1.SecretKeySelector
  1723. </a>
  1724. </em>
  1725. </td>
  1726. <td>
  1727. <em>(Optional)</em>
  1728. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1729. for authenticating with Akeyless. If a name is specified without a key,
  1730. <code>token</code> is the default. If one is not specified, the one bound to
  1731. the controller will be used.</p>
  1732. </td>
  1733. </tr>
  1734. </tbody>
  1735. </table>
  1736. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1737. </h3>
  1738. <p>
  1739. (<em>Appears on:</em>
  1740. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1741. </p>
  1742. <p>
  1743. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1744. </p>
  1745. <table>
  1746. <thead>
  1747. <tr>
  1748. <th>Field</th>
  1749. <th>Description</th>
  1750. </tr>
  1751. </thead>
  1752. <tbody>
  1753. <tr>
  1754. <td>
  1755. <code>akeylessGWApiURL</code></br>
  1756. <em>
  1757. string
  1758. </em>
  1759. </td>
  1760. <td>
  1761. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1762. </td>
  1763. </tr>
  1764. <tr>
  1765. <td>
  1766. <code>authSecretRef</code></br>
  1767. <em>
  1768. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1769. AkeylessAuth
  1770. </a>
  1771. </em>
  1772. </td>
  1773. <td>
  1774. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1775. </td>
  1776. </tr>
  1777. <tr>
  1778. <td>
  1779. <code>caBundle</code></br>
  1780. <em>
  1781. []byte
  1782. </em>
  1783. </td>
  1784. <td>
  1785. <em>(Optional)</em>
  1786. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1787. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1788. are used to validate the TLS connection.</p>
  1789. </td>
  1790. </tr>
  1791. <tr>
  1792. <td>
  1793. <code>caProvider</code></br>
  1794. <em>
  1795. <a href="#external-secrets.io/v1beta1.CAProvider">
  1796. CAProvider
  1797. </a>
  1798. </em>
  1799. </td>
  1800. <td>
  1801. <em>(Optional)</em>
  1802. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1803. </td>
  1804. </tr>
  1805. </tbody>
  1806. </table>
  1807. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1808. </h3>
  1809. <p>
  1810. (<em>Appears on:</em>
  1811. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1812. </p>
  1813. <p>
  1814. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1815. </p>
  1816. <table>
  1817. <thead>
  1818. <tr>
  1819. <th>Field</th>
  1820. <th>Description</th>
  1821. </tr>
  1822. </thead>
  1823. <tbody>
  1824. <tr>
  1825. <td>
  1826. <code>secretRef</code></br>
  1827. <em>
  1828. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1829. AlibabaAuthSecretRef
  1830. </a>
  1831. </em>
  1832. </td>
  1833. <td>
  1834. <em>(Optional)</em>
  1835. </td>
  1836. </tr>
  1837. <tr>
  1838. <td>
  1839. <code>rrsa</code></br>
  1840. <em>
  1841. <a href="#external-secrets.io/v1beta1.AlibabaRRSAAuth">
  1842. AlibabaRRSAAuth
  1843. </a>
  1844. </em>
  1845. </td>
  1846. <td>
  1847. <em>(Optional)</em>
  1848. </td>
  1849. </tr>
  1850. </tbody>
  1851. </table>
  1852. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1853. </h3>
  1854. <p>
  1855. (<em>Appears on:</em>
  1856. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1857. </p>
  1858. <p>
  1859. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1860. </p>
  1861. <table>
  1862. <thead>
  1863. <tr>
  1864. <th>Field</th>
  1865. <th>Description</th>
  1866. </tr>
  1867. </thead>
  1868. <tbody>
  1869. <tr>
  1870. <td>
  1871. <code>accessKeyIDSecretRef</code></br>
  1872. <em>
  1873. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1874. External Secrets meta/v1.SecretKeySelector
  1875. </a>
  1876. </em>
  1877. </td>
  1878. <td>
  1879. <p>The AccessKeyID is used for authentication</p>
  1880. </td>
  1881. </tr>
  1882. <tr>
  1883. <td>
  1884. <code>accessKeySecretSecretRef</code></br>
  1885. <em>
  1886. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1887. External Secrets meta/v1.SecretKeySelector
  1888. </a>
  1889. </em>
  1890. </td>
  1891. <td>
  1892. <p>The AccessKeySecret is used for authentication</p>
  1893. </td>
  1894. </tr>
  1895. </tbody>
  1896. </table>
  1897. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1898. </h3>
  1899. <p>
  1900. (<em>Appears on:</em>
  1901. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1902. </p>
  1903. <p>
  1904. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1905. </p>
  1906. <table>
  1907. <thead>
  1908. <tr>
  1909. <th>Field</th>
  1910. <th>Description</th>
  1911. </tr>
  1912. </thead>
  1913. <tbody>
  1914. <tr>
  1915. <td>
  1916. <code>auth</code></br>
  1917. <em>
  1918. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1919. AlibabaAuth
  1920. </a>
  1921. </em>
  1922. </td>
  1923. <td>
  1924. </td>
  1925. </tr>
  1926. <tr>
  1927. <td>
  1928. <code>regionID</code></br>
  1929. <em>
  1930. string
  1931. </em>
  1932. </td>
  1933. <td>
  1934. <p>Alibaba Region to be used for the provider</p>
  1935. </td>
  1936. </tr>
  1937. </tbody>
  1938. </table>
  1939. <h3 id="external-secrets.io/v1beta1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1940. </h3>
  1941. <p>
  1942. (<em>Appears on:</em>
  1943. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1944. </p>
  1945. <p>
  1946. <p>Authenticate against Alibaba using RRSA.</p>
  1947. </p>
  1948. <table>
  1949. <thead>
  1950. <tr>
  1951. <th>Field</th>
  1952. <th>Description</th>
  1953. </tr>
  1954. </thead>
  1955. <tbody>
  1956. <tr>
  1957. <td>
  1958. <code>oidcProviderArn</code></br>
  1959. <em>
  1960. string
  1961. </em>
  1962. </td>
  1963. <td>
  1964. </td>
  1965. </tr>
  1966. <tr>
  1967. <td>
  1968. <code>oidcTokenFilePath</code></br>
  1969. <em>
  1970. string
  1971. </em>
  1972. </td>
  1973. <td>
  1974. </td>
  1975. </tr>
  1976. <tr>
  1977. <td>
  1978. <code>roleArn</code></br>
  1979. <em>
  1980. string
  1981. </em>
  1982. </td>
  1983. <td>
  1984. </td>
  1985. </tr>
  1986. <tr>
  1987. <td>
  1988. <code>sessionName</code></br>
  1989. <em>
  1990. string
  1991. </em>
  1992. </td>
  1993. <td>
  1994. </td>
  1995. </tr>
  1996. </tbody>
  1997. </table>
  1998. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1999. (<code>string</code> alias)</p></h3>
  2000. <p>
  2001. (<em>Appears on:</em>
  2002. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  2003. </p>
  2004. <p>
  2005. <p>AuthType describes how to authenticate to the Azure Keyvault
  2006. Only one of the following auth types may be specified.
  2007. If none of the following auth type is specified, the default one
  2008. is ServicePrincipal.</p>
  2009. </p>
  2010. <table>
  2011. <thead>
  2012. <tr>
  2013. <th>Value</th>
  2014. <th>Description</th>
  2015. </tr>
  2016. </thead>
  2017. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  2018. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  2019. </td>
  2020. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  2021. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  2022. </td>
  2023. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  2024. <td><p>Using Workload Identity service accounts to authenticate.</p>
  2025. </td>
  2026. </tr></tbody>
  2027. </table>
  2028. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  2029. (<code>string</code> alias)</p></h3>
  2030. <p>
  2031. (<em>Appears on:</em>
  2032. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  2033. </p>
  2034. <p>
  2035. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  2036. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2037. 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>
  2038. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2039. </p>
  2040. <table>
  2041. <thead>
  2042. <tr>
  2043. <th>Value</th>
  2044. <th>Description</th>
  2045. </tr>
  2046. </thead>
  2047. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2048. <td></td>
  2049. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2050. <td></td>
  2051. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2052. <td></td>
  2053. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2054. <td></td>
  2055. </tr></tbody>
  2056. </table>
  2057. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  2058. </h3>
  2059. <p>
  2060. (<em>Appears on:</em>
  2061. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  2062. </p>
  2063. <p>
  2064. <p>Configuration used to authenticate with Azure.</p>
  2065. </p>
  2066. <table>
  2067. <thead>
  2068. <tr>
  2069. <th>Field</th>
  2070. <th>Description</th>
  2071. </tr>
  2072. </thead>
  2073. <tbody>
  2074. <tr>
  2075. <td>
  2076. <code>clientId</code></br>
  2077. <em>
  2078. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2079. External Secrets meta/v1.SecretKeySelector
  2080. </a>
  2081. </em>
  2082. </td>
  2083. <td>
  2084. <em>(Optional)</em>
  2085. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2086. </td>
  2087. </tr>
  2088. <tr>
  2089. <td>
  2090. <code>tenantId</code></br>
  2091. <em>
  2092. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2093. External Secrets meta/v1.SecretKeySelector
  2094. </a>
  2095. </em>
  2096. </td>
  2097. <td>
  2098. <em>(Optional)</em>
  2099. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2100. </td>
  2101. </tr>
  2102. <tr>
  2103. <td>
  2104. <code>clientSecret</code></br>
  2105. <em>
  2106. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2107. External Secrets meta/v1.SecretKeySelector
  2108. </a>
  2109. </em>
  2110. </td>
  2111. <td>
  2112. <em>(Optional)</em>
  2113. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2114. </td>
  2115. </tr>
  2116. </tbody>
  2117. </table>
  2118. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  2119. </h3>
  2120. <p>
  2121. (<em>Appears on:</em>
  2122. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2123. </p>
  2124. <p>
  2125. <p>Configures an store to sync secrets using Azure KV.</p>
  2126. </p>
  2127. <table>
  2128. <thead>
  2129. <tr>
  2130. <th>Field</th>
  2131. <th>Description</th>
  2132. </tr>
  2133. </thead>
  2134. <tbody>
  2135. <tr>
  2136. <td>
  2137. <code>authType</code></br>
  2138. <em>
  2139. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  2140. AzureAuthType
  2141. </a>
  2142. </em>
  2143. </td>
  2144. <td>
  2145. <em>(Optional)</em>
  2146. <p>Auth type defines how to authenticate to the keyvault service.
  2147. Valid values are:
  2148. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2149. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2150. </td>
  2151. </tr>
  2152. <tr>
  2153. <td>
  2154. <code>vaultUrl</code></br>
  2155. <em>
  2156. string
  2157. </em>
  2158. </td>
  2159. <td>
  2160. <p>Vault Url from which the secrets to be fetched from.</p>
  2161. </td>
  2162. </tr>
  2163. <tr>
  2164. <td>
  2165. <code>tenantId</code></br>
  2166. <em>
  2167. string
  2168. </em>
  2169. </td>
  2170. <td>
  2171. <em>(Optional)</em>
  2172. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2173. </td>
  2174. </tr>
  2175. <tr>
  2176. <td>
  2177. <code>environmentType</code></br>
  2178. <em>
  2179. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  2180. AzureEnvironmentType
  2181. </a>
  2182. </em>
  2183. </td>
  2184. <td>
  2185. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2186. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2187. 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>
  2188. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2189. </td>
  2190. </tr>
  2191. <tr>
  2192. <td>
  2193. <code>authSecretRef</code></br>
  2194. <em>
  2195. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  2196. AzureKVAuth
  2197. </a>
  2198. </em>
  2199. </td>
  2200. <td>
  2201. <em>(Optional)</em>
  2202. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2203. </td>
  2204. </tr>
  2205. <tr>
  2206. <td>
  2207. <code>serviceAccountRef</code></br>
  2208. <em>
  2209. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2210. External Secrets meta/v1.ServiceAccountSelector
  2211. </a>
  2212. </em>
  2213. </td>
  2214. <td>
  2215. <em>(Optional)</em>
  2216. <p>ServiceAccountRef specified the service account
  2217. that should be used when authenticating with WorkloadIdentity.</p>
  2218. </td>
  2219. </tr>
  2220. <tr>
  2221. <td>
  2222. <code>identityId</code></br>
  2223. <em>
  2224. string
  2225. </em>
  2226. </td>
  2227. <td>
  2228. <em>(Optional)</em>
  2229. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2230. </td>
  2231. </tr>
  2232. </tbody>
  2233. </table>
  2234. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  2235. </h3>
  2236. <p>
  2237. (<em>Appears on:</em>
  2238. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>,
  2239. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>,
  2240. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  2241. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  2242. </p>
  2243. <p>
  2244. <p>Used to provide custom certificate authority (CA) certificates
  2245. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2246. that contains a PEM-encoded certificate.</p>
  2247. </p>
  2248. <table>
  2249. <thead>
  2250. <tr>
  2251. <th>Field</th>
  2252. <th>Description</th>
  2253. </tr>
  2254. </thead>
  2255. <tbody>
  2256. <tr>
  2257. <td>
  2258. <code>type</code></br>
  2259. <em>
  2260. <a href="#external-secrets.io/v1beta1.CAProviderType">
  2261. CAProviderType
  2262. </a>
  2263. </em>
  2264. </td>
  2265. <td>
  2266. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2267. </td>
  2268. </tr>
  2269. <tr>
  2270. <td>
  2271. <code>name</code></br>
  2272. <em>
  2273. string
  2274. </em>
  2275. </td>
  2276. <td>
  2277. <p>The name of the object located at the provider type.</p>
  2278. </td>
  2279. </tr>
  2280. <tr>
  2281. <td>
  2282. <code>key</code></br>
  2283. <em>
  2284. string
  2285. </em>
  2286. </td>
  2287. <td>
  2288. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2289. </td>
  2290. </tr>
  2291. <tr>
  2292. <td>
  2293. <code>namespace</code></br>
  2294. <em>
  2295. string
  2296. </em>
  2297. </td>
  2298. <td>
  2299. <em>(Optional)</em>
  2300. <p>The namespace the Provider type is in.
  2301. Can only be defined when used in a ClusterSecretStore.</p>
  2302. </td>
  2303. </tr>
  2304. </tbody>
  2305. </table>
  2306. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  2307. (<code>string</code> alias)</p></h3>
  2308. <p>
  2309. (<em>Appears on:</em>
  2310. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  2311. </p>
  2312. <p>
  2313. </p>
  2314. <table>
  2315. <thead>
  2316. <tr>
  2317. <th>Value</th>
  2318. <th>Description</th>
  2319. </tr>
  2320. </thead>
  2321. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2322. <td></td>
  2323. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2324. <td></td>
  2325. </tr></tbody>
  2326. </table>
  2327. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  2328. </h3>
  2329. <p>
  2330. (<em>Appears on:</em>
  2331. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  2332. </p>
  2333. <p>
  2334. </p>
  2335. <table>
  2336. <thead>
  2337. <tr>
  2338. <th>Field</th>
  2339. <th>Description</th>
  2340. </tr>
  2341. </thead>
  2342. <tbody>
  2343. <tr>
  2344. <td>
  2345. <code>clientCert</code></br>
  2346. <em>
  2347. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2348. External Secrets meta/v1.SecretKeySelector
  2349. </a>
  2350. </em>
  2351. </td>
  2352. <td>
  2353. </td>
  2354. </tr>
  2355. <tr>
  2356. <td>
  2357. <code>clientKey</code></br>
  2358. <em>
  2359. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2360. External Secrets meta/v1.SecretKeySelector
  2361. </a>
  2362. </em>
  2363. </td>
  2364. <td>
  2365. </td>
  2366. </tr>
  2367. </tbody>
  2368. </table>
  2369. <h3 id="external-secrets.io/v1beta1.ChefAuth">ChefAuth
  2370. </h3>
  2371. <p>
  2372. (<em>Appears on:</em>
  2373. <a href="#external-secrets.io/v1beta1.ChefProvider">ChefProvider</a>)
  2374. </p>
  2375. <p>
  2376. <p>ChefAuth contains a secretRef for credentials.</p>
  2377. </p>
  2378. <table>
  2379. <thead>
  2380. <tr>
  2381. <th>Field</th>
  2382. <th>Description</th>
  2383. </tr>
  2384. </thead>
  2385. <tbody>
  2386. <tr>
  2387. <td>
  2388. <code>secretRef</code></br>
  2389. <em>
  2390. <a href="#external-secrets.io/v1beta1.ChefAuthSecretRef">
  2391. ChefAuthSecretRef
  2392. </a>
  2393. </em>
  2394. </td>
  2395. <td>
  2396. </td>
  2397. </tr>
  2398. </tbody>
  2399. </table>
  2400. <h3 id="external-secrets.io/v1beta1.ChefAuthSecretRef">ChefAuthSecretRef
  2401. </h3>
  2402. <p>
  2403. (<em>Appears on:</em>
  2404. <a href="#external-secrets.io/v1beta1.ChefAuth">ChefAuth</a>)
  2405. </p>
  2406. <p>
  2407. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2408. </p>
  2409. <table>
  2410. <thead>
  2411. <tr>
  2412. <th>Field</th>
  2413. <th>Description</th>
  2414. </tr>
  2415. </thead>
  2416. <tbody>
  2417. <tr>
  2418. <td>
  2419. <code>privateKeySecretRef</code></br>
  2420. <em>
  2421. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2422. External Secrets meta/v1.SecretKeySelector
  2423. </a>
  2424. </em>
  2425. </td>
  2426. <td>
  2427. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2428. </td>
  2429. </tr>
  2430. </tbody>
  2431. </table>
  2432. <h3 id="external-secrets.io/v1beta1.ChefProvider">ChefProvider
  2433. </h3>
  2434. <p>
  2435. (<em>Appears on:</em>
  2436. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2437. </p>
  2438. <p>
  2439. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2440. </p>
  2441. <table>
  2442. <thead>
  2443. <tr>
  2444. <th>Field</th>
  2445. <th>Description</th>
  2446. </tr>
  2447. </thead>
  2448. <tbody>
  2449. <tr>
  2450. <td>
  2451. <code>auth</code></br>
  2452. <em>
  2453. <a href="#external-secrets.io/v1beta1.ChefAuth">
  2454. ChefAuth
  2455. </a>
  2456. </em>
  2457. </td>
  2458. <td>
  2459. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2460. </td>
  2461. </tr>
  2462. <tr>
  2463. <td>
  2464. <code>username</code></br>
  2465. <em>
  2466. string
  2467. </em>
  2468. </td>
  2469. <td>
  2470. <p>UserName should be the user ID on the chef server</p>
  2471. </td>
  2472. </tr>
  2473. <tr>
  2474. <td>
  2475. <code>serverUrl</code></br>
  2476. <em>
  2477. string
  2478. </em>
  2479. </td>
  2480. <td>
  2481. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2482. </td>
  2483. </tr>
  2484. </tbody>
  2485. </table>
  2486. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  2487. </h3>
  2488. <p>
  2489. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2490. </p>
  2491. <table>
  2492. <thead>
  2493. <tr>
  2494. <th>Field</th>
  2495. <th>Description</th>
  2496. </tr>
  2497. </thead>
  2498. <tbody>
  2499. <tr>
  2500. <td>
  2501. <code>metadata</code></br>
  2502. <em>
  2503. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2504. Kubernetes meta/v1.ObjectMeta
  2505. </a>
  2506. </em>
  2507. </td>
  2508. <td>
  2509. Refer to the Kubernetes API documentation for the fields of the
  2510. <code>metadata</code> field.
  2511. </td>
  2512. </tr>
  2513. <tr>
  2514. <td>
  2515. <code>spec</code></br>
  2516. <em>
  2517. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  2518. ClusterExternalSecretSpec
  2519. </a>
  2520. </em>
  2521. </td>
  2522. <td>
  2523. <br/>
  2524. <br/>
  2525. <table>
  2526. <tr>
  2527. <td>
  2528. <code>externalSecretSpec</code></br>
  2529. <em>
  2530. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2531. ExternalSecretSpec
  2532. </a>
  2533. </em>
  2534. </td>
  2535. <td>
  2536. <p>The spec for the ExternalSecrets to be created</p>
  2537. </td>
  2538. </tr>
  2539. <tr>
  2540. <td>
  2541. <code>externalSecretName</code></br>
  2542. <em>
  2543. string
  2544. </em>
  2545. </td>
  2546. <td>
  2547. <em>(Optional)</em>
  2548. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2549. </td>
  2550. </tr>
  2551. <tr>
  2552. <td>
  2553. <code>externalSecretMetadata</code></br>
  2554. <em>
  2555. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2556. ExternalSecretMetadata
  2557. </a>
  2558. </em>
  2559. </td>
  2560. <td>
  2561. <em>(Optional)</em>
  2562. <p>The metadata of the external secrets to be created</p>
  2563. </td>
  2564. </tr>
  2565. <tr>
  2566. <td>
  2567. <code>namespaceSelector</code></br>
  2568. <em>
  2569. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2570. Kubernetes meta/v1.LabelSelector
  2571. </a>
  2572. </em>
  2573. </td>
  2574. <td>
  2575. <em>(Optional)</em>
  2576. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2577. Deprecated: Use NamespaceSelectors instead.</p>
  2578. </td>
  2579. </tr>
  2580. <tr>
  2581. <td>
  2582. <code>namespaceSelectors</code></br>
  2583. <em>
  2584. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2585. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2586. </a>
  2587. </em>
  2588. </td>
  2589. <td>
  2590. <em>(Optional)</em>
  2591. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2592. </td>
  2593. </tr>
  2594. <tr>
  2595. <td>
  2596. <code>namespaces</code></br>
  2597. <em>
  2598. []string
  2599. </em>
  2600. </td>
  2601. <td>
  2602. <em>(Optional)</em>
  2603. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelector ends up choosing.</p>
  2604. </td>
  2605. </tr>
  2606. <tr>
  2607. <td>
  2608. <code>refreshTime</code></br>
  2609. <em>
  2610. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2611. Kubernetes meta/v1.Duration
  2612. </a>
  2613. </em>
  2614. </td>
  2615. <td>
  2616. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2617. </td>
  2618. </tr>
  2619. </table>
  2620. </td>
  2621. </tr>
  2622. <tr>
  2623. <td>
  2624. <code>status</code></br>
  2625. <em>
  2626. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  2627. ClusterExternalSecretStatus
  2628. </a>
  2629. </em>
  2630. </td>
  2631. <td>
  2632. </td>
  2633. </tr>
  2634. </tbody>
  2635. </table>
  2636. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  2637. (<code>string</code> alias)</p></h3>
  2638. <p>
  2639. (<em>Appears on:</em>
  2640. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  2641. </p>
  2642. <p>
  2643. </p>
  2644. <table>
  2645. <thead>
  2646. <tr>
  2647. <th>Value</th>
  2648. <th>Description</th>
  2649. </tr>
  2650. </thead>
  2651. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2652. <td></td>
  2653. </tr></tbody>
  2654. </table>
  2655. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  2656. </h3>
  2657. <p>
  2658. (<em>Appears on:</em>
  2659. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2660. </p>
  2661. <p>
  2662. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  2663. </p>
  2664. <table>
  2665. <thead>
  2666. <tr>
  2667. <th>Field</th>
  2668. <th>Description</th>
  2669. </tr>
  2670. </thead>
  2671. <tbody>
  2672. <tr>
  2673. <td>
  2674. <code>namespace</code></br>
  2675. <em>
  2676. string
  2677. </em>
  2678. </td>
  2679. <td>
  2680. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  2681. </td>
  2682. </tr>
  2683. <tr>
  2684. <td>
  2685. <code>reason</code></br>
  2686. <em>
  2687. string
  2688. </em>
  2689. </td>
  2690. <td>
  2691. <em>(Optional)</em>
  2692. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  2693. </td>
  2694. </tr>
  2695. </tbody>
  2696. </table>
  2697. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  2698. </h3>
  2699. <p>
  2700. (<em>Appears on:</em>
  2701. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2702. </p>
  2703. <p>
  2704. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  2705. </p>
  2706. <table>
  2707. <thead>
  2708. <tr>
  2709. <th>Field</th>
  2710. <th>Description</th>
  2711. </tr>
  2712. </thead>
  2713. <tbody>
  2714. <tr>
  2715. <td>
  2716. <code>externalSecretSpec</code></br>
  2717. <em>
  2718. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2719. ExternalSecretSpec
  2720. </a>
  2721. </em>
  2722. </td>
  2723. <td>
  2724. <p>The spec for the ExternalSecrets to be created</p>
  2725. </td>
  2726. </tr>
  2727. <tr>
  2728. <td>
  2729. <code>externalSecretName</code></br>
  2730. <em>
  2731. string
  2732. </em>
  2733. </td>
  2734. <td>
  2735. <em>(Optional)</em>
  2736. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2737. </td>
  2738. </tr>
  2739. <tr>
  2740. <td>
  2741. <code>externalSecretMetadata</code></br>
  2742. <em>
  2743. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2744. ExternalSecretMetadata
  2745. </a>
  2746. </em>
  2747. </td>
  2748. <td>
  2749. <em>(Optional)</em>
  2750. <p>The metadata of the external secrets to be created</p>
  2751. </td>
  2752. </tr>
  2753. <tr>
  2754. <td>
  2755. <code>namespaceSelector</code></br>
  2756. <em>
  2757. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2758. Kubernetes meta/v1.LabelSelector
  2759. </a>
  2760. </em>
  2761. </td>
  2762. <td>
  2763. <em>(Optional)</em>
  2764. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2765. Deprecated: Use NamespaceSelectors instead.</p>
  2766. </td>
  2767. </tr>
  2768. <tr>
  2769. <td>
  2770. <code>namespaceSelectors</code></br>
  2771. <em>
  2772. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2773. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2774. </a>
  2775. </em>
  2776. </td>
  2777. <td>
  2778. <em>(Optional)</em>
  2779. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2780. </td>
  2781. </tr>
  2782. <tr>
  2783. <td>
  2784. <code>namespaces</code></br>
  2785. <em>
  2786. []string
  2787. </em>
  2788. </td>
  2789. <td>
  2790. <em>(Optional)</em>
  2791. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelector ends up choosing.</p>
  2792. </td>
  2793. </tr>
  2794. <tr>
  2795. <td>
  2796. <code>refreshTime</code></br>
  2797. <em>
  2798. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2799. Kubernetes meta/v1.Duration
  2800. </a>
  2801. </em>
  2802. </td>
  2803. <td>
  2804. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2805. </td>
  2806. </tr>
  2807. </tbody>
  2808. </table>
  2809. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  2810. </h3>
  2811. <p>
  2812. (<em>Appears on:</em>
  2813. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2814. </p>
  2815. <p>
  2816. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  2817. </p>
  2818. <table>
  2819. <thead>
  2820. <tr>
  2821. <th>Field</th>
  2822. <th>Description</th>
  2823. </tr>
  2824. </thead>
  2825. <tbody>
  2826. <tr>
  2827. <td>
  2828. <code>externalSecretName</code></br>
  2829. <em>
  2830. string
  2831. </em>
  2832. </td>
  2833. <td>
  2834. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  2835. </td>
  2836. </tr>
  2837. <tr>
  2838. <td>
  2839. <code>failedNamespaces</code></br>
  2840. <em>
  2841. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  2842. []ClusterExternalSecretNamespaceFailure
  2843. </a>
  2844. </em>
  2845. </td>
  2846. <td>
  2847. <em>(Optional)</em>
  2848. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  2849. </td>
  2850. </tr>
  2851. <tr>
  2852. <td>
  2853. <code>provisionedNamespaces</code></br>
  2854. <em>
  2855. []string
  2856. </em>
  2857. </td>
  2858. <td>
  2859. <em>(Optional)</em>
  2860. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  2861. </td>
  2862. </tr>
  2863. <tr>
  2864. <td>
  2865. <code>conditions</code></br>
  2866. <em>
  2867. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  2868. []ClusterExternalSecretStatusCondition
  2869. </a>
  2870. </em>
  2871. </td>
  2872. <td>
  2873. <em>(Optional)</em>
  2874. </td>
  2875. </tr>
  2876. </tbody>
  2877. </table>
  2878. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  2879. </h3>
  2880. <p>
  2881. (<em>Appears on:</em>
  2882. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2883. </p>
  2884. <p>
  2885. </p>
  2886. <table>
  2887. <thead>
  2888. <tr>
  2889. <th>Field</th>
  2890. <th>Description</th>
  2891. </tr>
  2892. </thead>
  2893. <tbody>
  2894. <tr>
  2895. <td>
  2896. <code>type</code></br>
  2897. <em>
  2898. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  2899. ClusterExternalSecretConditionType
  2900. </a>
  2901. </em>
  2902. </td>
  2903. <td>
  2904. </td>
  2905. </tr>
  2906. <tr>
  2907. <td>
  2908. <code>status</code></br>
  2909. <em>
  2910. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  2911. Kubernetes core/v1.ConditionStatus
  2912. </a>
  2913. </em>
  2914. </td>
  2915. <td>
  2916. </td>
  2917. </tr>
  2918. <tr>
  2919. <td>
  2920. <code>message</code></br>
  2921. <em>
  2922. string
  2923. </em>
  2924. </td>
  2925. <td>
  2926. <em>(Optional)</em>
  2927. </td>
  2928. </tr>
  2929. </tbody>
  2930. </table>
  2931. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2932. </h3>
  2933. <p>
  2934. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2935. </p>
  2936. <table>
  2937. <thead>
  2938. <tr>
  2939. <th>Field</th>
  2940. <th>Description</th>
  2941. </tr>
  2942. </thead>
  2943. <tbody>
  2944. <tr>
  2945. <td>
  2946. <code>metadata</code></br>
  2947. <em>
  2948. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2949. Kubernetes meta/v1.ObjectMeta
  2950. </a>
  2951. </em>
  2952. </td>
  2953. <td>
  2954. Refer to the Kubernetes API documentation for the fields of the
  2955. <code>metadata</code> field.
  2956. </td>
  2957. </tr>
  2958. <tr>
  2959. <td>
  2960. <code>spec</code></br>
  2961. <em>
  2962. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2963. SecretStoreSpec
  2964. </a>
  2965. </em>
  2966. </td>
  2967. <td>
  2968. <br/>
  2969. <br/>
  2970. <table>
  2971. <tr>
  2972. <td>
  2973. <code>controller</code></br>
  2974. <em>
  2975. string
  2976. </em>
  2977. </td>
  2978. <td>
  2979. <em>(Optional)</em>
  2980. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  2981. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  2982. </td>
  2983. </tr>
  2984. <tr>
  2985. <td>
  2986. <code>provider</code></br>
  2987. <em>
  2988. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2989. SecretStoreProvider
  2990. </a>
  2991. </em>
  2992. </td>
  2993. <td>
  2994. <p>Used to configure the provider. Only one provider may be set</p>
  2995. </td>
  2996. </tr>
  2997. <tr>
  2998. <td>
  2999. <code>retrySettings</code></br>
  3000. <em>
  3001. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  3002. SecretStoreRetrySettings
  3003. </a>
  3004. </em>
  3005. </td>
  3006. <td>
  3007. <em>(Optional)</em>
  3008. <p>Used to configure http retries if failed</p>
  3009. </td>
  3010. </tr>
  3011. <tr>
  3012. <td>
  3013. <code>refreshInterval</code></br>
  3014. <em>
  3015. int
  3016. </em>
  3017. </td>
  3018. <td>
  3019. <em>(Optional)</em>
  3020. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3021. </td>
  3022. </tr>
  3023. <tr>
  3024. <td>
  3025. <code>conditions</code></br>
  3026. <em>
  3027. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  3028. []ClusterSecretStoreCondition
  3029. </a>
  3030. </em>
  3031. </td>
  3032. <td>
  3033. <em>(Optional)</em>
  3034. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3035. </td>
  3036. </tr>
  3037. </table>
  3038. </td>
  3039. </tr>
  3040. <tr>
  3041. <td>
  3042. <code>status</code></br>
  3043. <em>
  3044. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  3045. SecretStoreStatus
  3046. </a>
  3047. </em>
  3048. </td>
  3049. <td>
  3050. </td>
  3051. </tr>
  3052. </tbody>
  3053. </table>
  3054. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3055. </h3>
  3056. <p>
  3057. (<em>Appears on:</em>
  3058. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  3059. </p>
  3060. <p>
  3061. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3062. for a ClusterSecretStore instance.</p>
  3063. </p>
  3064. <table>
  3065. <thead>
  3066. <tr>
  3067. <th>Field</th>
  3068. <th>Description</th>
  3069. </tr>
  3070. </thead>
  3071. <tbody>
  3072. <tr>
  3073. <td>
  3074. <code>namespaceSelector</code></br>
  3075. <em>
  3076. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3077. Kubernetes meta/v1.LabelSelector
  3078. </a>
  3079. </em>
  3080. </td>
  3081. <td>
  3082. <em>(Optional)</em>
  3083. <p>Choose namespace using a labelSelector</p>
  3084. </td>
  3085. </tr>
  3086. <tr>
  3087. <td>
  3088. <code>namespaces</code></br>
  3089. <em>
  3090. []string
  3091. </em>
  3092. </td>
  3093. <td>
  3094. <p>Choose namespaces by name</p>
  3095. </td>
  3096. </tr>
  3097. </tbody>
  3098. </table>
  3099. <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
  3100. </h3>
  3101. <p>
  3102. (<em>Appears on:</em>
  3103. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  3104. </p>
  3105. <p>
  3106. </p>
  3107. <table>
  3108. <thead>
  3109. <tr>
  3110. <th>Field</th>
  3111. <th>Description</th>
  3112. </tr>
  3113. </thead>
  3114. <tbody>
  3115. <tr>
  3116. <td>
  3117. <code>account</code></br>
  3118. <em>
  3119. string
  3120. </em>
  3121. </td>
  3122. <td>
  3123. </td>
  3124. </tr>
  3125. <tr>
  3126. <td>
  3127. <code>userRef</code></br>
  3128. <em>
  3129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3130. External Secrets meta/v1.SecretKeySelector
  3131. </a>
  3132. </em>
  3133. </td>
  3134. <td>
  3135. </td>
  3136. </tr>
  3137. <tr>
  3138. <td>
  3139. <code>apiKeyRef</code></br>
  3140. <em>
  3141. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3142. External Secrets meta/v1.SecretKeySelector
  3143. </a>
  3144. </em>
  3145. </td>
  3146. <td>
  3147. </td>
  3148. </tr>
  3149. </tbody>
  3150. </table>
  3151. <h3 id="external-secrets.io/v1beta1.ConjurAuth">ConjurAuth
  3152. </h3>
  3153. <p>
  3154. (<em>Appears on:</em>
  3155. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</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>apikey</code></br>
  3170. <em>
  3171. <a href="#external-secrets.io/v1beta1.ConjurAPIKey">
  3172. ConjurAPIKey
  3173. </a>
  3174. </em>
  3175. </td>
  3176. <td>
  3177. <em>(Optional)</em>
  3178. </td>
  3179. </tr>
  3180. <tr>
  3181. <td>
  3182. <code>jwt</code></br>
  3183. <em>
  3184. <a href="#external-secrets.io/v1beta1.ConjurJWT">
  3185. ConjurJWT
  3186. </a>
  3187. </em>
  3188. </td>
  3189. <td>
  3190. <em>(Optional)</em>
  3191. </td>
  3192. </tr>
  3193. </tbody>
  3194. </table>
  3195. <h3 id="external-secrets.io/v1beta1.ConjurJWT">ConjurJWT
  3196. </h3>
  3197. <p>
  3198. (<em>Appears on:</em>
  3199. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  3200. </p>
  3201. <p>
  3202. </p>
  3203. <table>
  3204. <thead>
  3205. <tr>
  3206. <th>Field</th>
  3207. <th>Description</th>
  3208. </tr>
  3209. </thead>
  3210. <tbody>
  3211. <tr>
  3212. <td>
  3213. <code>account</code></br>
  3214. <em>
  3215. string
  3216. </em>
  3217. </td>
  3218. <td>
  3219. </td>
  3220. </tr>
  3221. <tr>
  3222. <td>
  3223. <code>serviceID</code></br>
  3224. <em>
  3225. string
  3226. </em>
  3227. </td>
  3228. <td>
  3229. <p>The conjur authn jwt webservice id</p>
  3230. </td>
  3231. </tr>
  3232. <tr>
  3233. <td>
  3234. <code>hostId</code></br>
  3235. <em>
  3236. string
  3237. </em>
  3238. </td>
  3239. <td>
  3240. <em>(Optional)</em>
  3241. <p>Optional HostID for JWT authentication. This may be used depending
  3242. on how the Conjur JWT authenticator policy is configured.</p>
  3243. </td>
  3244. </tr>
  3245. <tr>
  3246. <td>
  3247. <code>secretRef</code></br>
  3248. <em>
  3249. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3250. External Secrets meta/v1.SecretKeySelector
  3251. </a>
  3252. </em>
  3253. </td>
  3254. <td>
  3255. <em>(Optional)</em>
  3256. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3257. authenticate with Conjur using the JWT authentication method.</p>
  3258. </td>
  3259. </tr>
  3260. <tr>
  3261. <td>
  3262. <code>serviceAccountRef</code></br>
  3263. <em>
  3264. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3265. External Secrets meta/v1.ServiceAccountSelector
  3266. </a>
  3267. </em>
  3268. </td>
  3269. <td>
  3270. <em>(Optional)</em>
  3271. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3272. a token for with the <code>TokenRequest</code> API.</p>
  3273. </td>
  3274. </tr>
  3275. </tbody>
  3276. </table>
  3277. <h3 id="external-secrets.io/v1beta1.ConjurProvider">ConjurProvider
  3278. </h3>
  3279. <p>
  3280. (<em>Appears on:</em>
  3281. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3282. </p>
  3283. <p>
  3284. </p>
  3285. <table>
  3286. <thead>
  3287. <tr>
  3288. <th>Field</th>
  3289. <th>Description</th>
  3290. </tr>
  3291. </thead>
  3292. <tbody>
  3293. <tr>
  3294. <td>
  3295. <code>url</code></br>
  3296. <em>
  3297. string
  3298. </em>
  3299. </td>
  3300. <td>
  3301. </td>
  3302. </tr>
  3303. <tr>
  3304. <td>
  3305. <code>caBundle</code></br>
  3306. <em>
  3307. string
  3308. </em>
  3309. </td>
  3310. <td>
  3311. <em>(Optional)</em>
  3312. </td>
  3313. </tr>
  3314. <tr>
  3315. <td>
  3316. <code>caProvider</code></br>
  3317. <em>
  3318. <a href="#external-secrets.io/v1beta1.CAProvider">
  3319. CAProvider
  3320. </a>
  3321. </em>
  3322. </td>
  3323. <td>
  3324. <em>(Optional)</em>
  3325. </td>
  3326. </tr>
  3327. <tr>
  3328. <td>
  3329. <code>auth</code></br>
  3330. <em>
  3331. <a href="#external-secrets.io/v1beta1.ConjurAuth">
  3332. ConjurAuth
  3333. </a>
  3334. </em>
  3335. </td>
  3336. <td>
  3337. </td>
  3338. </tr>
  3339. </tbody>
  3340. </table>
  3341. <h3 id="external-secrets.io/v1beta1.DelineaProvider">DelineaProvider
  3342. </h3>
  3343. <p>
  3344. (<em>Appears on:</em>
  3345. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3346. </p>
  3347. <p>
  3348. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3349. </p>
  3350. <table>
  3351. <thead>
  3352. <tr>
  3353. <th>Field</th>
  3354. <th>Description</th>
  3355. </tr>
  3356. </thead>
  3357. <tbody>
  3358. <tr>
  3359. <td>
  3360. <code>clientId</code></br>
  3361. <em>
  3362. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3363. DelineaProviderSecretRef
  3364. </a>
  3365. </em>
  3366. </td>
  3367. <td>
  3368. <p>ClientID is the non-secret part of the credential.</p>
  3369. </td>
  3370. </tr>
  3371. <tr>
  3372. <td>
  3373. <code>clientSecret</code></br>
  3374. <em>
  3375. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3376. DelineaProviderSecretRef
  3377. </a>
  3378. </em>
  3379. </td>
  3380. <td>
  3381. <p>ClientSecret is the secret part of the credential.</p>
  3382. </td>
  3383. </tr>
  3384. <tr>
  3385. <td>
  3386. <code>tenant</code></br>
  3387. <em>
  3388. string
  3389. </em>
  3390. </td>
  3391. <td>
  3392. <p>Tenant is the chosen hostname / site name.</p>
  3393. </td>
  3394. </tr>
  3395. <tr>
  3396. <td>
  3397. <code>urlTemplate</code></br>
  3398. <em>
  3399. string
  3400. </em>
  3401. </td>
  3402. <td>
  3403. <em>(Optional)</em>
  3404. <p>URLTemplate
  3405. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3406. </td>
  3407. </tr>
  3408. <tr>
  3409. <td>
  3410. <code>tld</code></br>
  3411. <em>
  3412. string
  3413. </em>
  3414. </td>
  3415. <td>
  3416. <em>(Optional)</em>
  3417. <p>TLD is based on the server location that was chosen during provisioning.
  3418. If unset, defaults to &ldquo;com&rdquo;.</p>
  3419. </td>
  3420. </tr>
  3421. </tbody>
  3422. </table>
  3423. <h3 id="external-secrets.io/v1beta1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3424. </h3>
  3425. <p>
  3426. (<em>Appears on:</em>
  3427. <a href="#external-secrets.io/v1beta1.DelineaProvider">DelineaProvider</a>)
  3428. </p>
  3429. <p>
  3430. </p>
  3431. <table>
  3432. <thead>
  3433. <tr>
  3434. <th>Field</th>
  3435. <th>Description</th>
  3436. </tr>
  3437. </thead>
  3438. <tbody>
  3439. <tr>
  3440. <td>
  3441. <code>value</code></br>
  3442. <em>
  3443. string
  3444. </em>
  3445. </td>
  3446. <td>
  3447. <em>(Optional)</em>
  3448. <p>Value can be specified directly to set a value without using a secret.</p>
  3449. </td>
  3450. </tr>
  3451. <tr>
  3452. <td>
  3453. <code>secretRef</code></br>
  3454. <em>
  3455. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3456. External Secrets meta/v1.SecretKeySelector
  3457. </a>
  3458. </em>
  3459. </td>
  3460. <td>
  3461. <em>(Optional)</em>
  3462. <p>SecretRef references a key in a secret that will be used as value.</p>
  3463. </td>
  3464. </tr>
  3465. </tbody>
  3466. </table>
  3467. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  3468. </h3>
  3469. <p>
  3470. (<em>Appears on:</em>
  3471. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  3472. </p>
  3473. <p>
  3474. </p>
  3475. <table>
  3476. <thead>
  3477. <tr>
  3478. <th>Field</th>
  3479. <th>Description</th>
  3480. </tr>
  3481. </thead>
  3482. <tbody>
  3483. <tr>
  3484. <td>
  3485. <code>secretRef</code></br>
  3486. <em>
  3487. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  3488. DopplerAuthSecretRef
  3489. </a>
  3490. </em>
  3491. </td>
  3492. <td>
  3493. </td>
  3494. </tr>
  3495. </tbody>
  3496. </table>
  3497. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  3498. </h3>
  3499. <p>
  3500. (<em>Appears on:</em>
  3501. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  3502. </p>
  3503. <p>
  3504. </p>
  3505. <table>
  3506. <thead>
  3507. <tr>
  3508. <th>Field</th>
  3509. <th>Description</th>
  3510. </tr>
  3511. </thead>
  3512. <tbody>
  3513. <tr>
  3514. <td>
  3515. <code>dopplerToken</code></br>
  3516. <em>
  3517. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3518. External Secrets meta/v1.SecretKeySelector
  3519. </a>
  3520. </em>
  3521. </td>
  3522. <td>
  3523. <p>The DopplerToken is used for authentication.
  3524. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  3525. The Key attribute defaults to dopplerToken if not specified.</p>
  3526. </td>
  3527. </tr>
  3528. </tbody>
  3529. </table>
  3530. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  3531. </h3>
  3532. <p>
  3533. (<em>Appears on:</em>
  3534. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3535. </p>
  3536. <p>
  3537. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  3538. Project and Config are required if not using a Service Token.</p>
  3539. </p>
  3540. <table>
  3541. <thead>
  3542. <tr>
  3543. <th>Field</th>
  3544. <th>Description</th>
  3545. </tr>
  3546. </thead>
  3547. <tbody>
  3548. <tr>
  3549. <td>
  3550. <code>auth</code></br>
  3551. <em>
  3552. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  3553. DopplerAuth
  3554. </a>
  3555. </em>
  3556. </td>
  3557. <td>
  3558. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  3559. </td>
  3560. </tr>
  3561. <tr>
  3562. <td>
  3563. <code>project</code></br>
  3564. <em>
  3565. string
  3566. </em>
  3567. </td>
  3568. <td>
  3569. <em>(Optional)</em>
  3570. <p>Doppler project (required if not using a Service Token)</p>
  3571. </td>
  3572. </tr>
  3573. <tr>
  3574. <td>
  3575. <code>config</code></br>
  3576. <em>
  3577. string
  3578. </em>
  3579. </td>
  3580. <td>
  3581. <em>(Optional)</em>
  3582. <p>Doppler config (required if not using a Service Token)</p>
  3583. </td>
  3584. </tr>
  3585. <tr>
  3586. <td>
  3587. <code>nameTransformer</code></br>
  3588. <em>
  3589. string
  3590. </em>
  3591. </td>
  3592. <td>
  3593. <em>(Optional)</em>
  3594. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  3595. </td>
  3596. </tr>
  3597. <tr>
  3598. <td>
  3599. <code>format</code></br>
  3600. <em>
  3601. string
  3602. </em>
  3603. </td>
  3604. <td>
  3605. <em>(Optional)</em>
  3606. <p>Format enables the downloading of secrets as a file (string)</p>
  3607. </td>
  3608. </tr>
  3609. </tbody>
  3610. </table>
  3611. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  3612. </h3>
  3613. <p>
  3614. <p>ExternalSecret is the Schema for the external-secrets API.</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>metadata</code></br>
  3627. <em>
  3628. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3629. Kubernetes meta/v1.ObjectMeta
  3630. </a>
  3631. </em>
  3632. </td>
  3633. <td>
  3634. Refer to the Kubernetes API documentation for the fields of the
  3635. <code>metadata</code> field.
  3636. </td>
  3637. </tr>
  3638. <tr>
  3639. <td>
  3640. <code>spec</code></br>
  3641. <em>
  3642. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  3643. ExternalSecretSpec
  3644. </a>
  3645. </em>
  3646. </td>
  3647. <td>
  3648. <br/>
  3649. <br/>
  3650. <table>
  3651. <tr>
  3652. <td>
  3653. <code>secretStoreRef</code></br>
  3654. <em>
  3655. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3656. SecretStoreRef
  3657. </a>
  3658. </em>
  3659. </td>
  3660. <td>
  3661. <em>(Optional)</em>
  3662. </td>
  3663. </tr>
  3664. <tr>
  3665. <td>
  3666. <code>target</code></br>
  3667. <em>
  3668. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3669. ExternalSecretTarget
  3670. </a>
  3671. </em>
  3672. </td>
  3673. <td>
  3674. <em>(Optional)</em>
  3675. </td>
  3676. </tr>
  3677. <tr>
  3678. <td>
  3679. <code>refreshInterval</code></br>
  3680. <em>
  3681. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3682. Kubernetes meta/v1.Duration
  3683. </a>
  3684. </em>
  3685. </td>
  3686. <td>
  3687. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3688. 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;
  3689. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3690. </td>
  3691. </tr>
  3692. <tr>
  3693. <td>
  3694. <code>data</code></br>
  3695. <em>
  3696. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3697. []ExternalSecretData
  3698. </a>
  3699. </em>
  3700. </td>
  3701. <td>
  3702. <em>(Optional)</em>
  3703. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3704. </td>
  3705. </tr>
  3706. <tr>
  3707. <td>
  3708. <code>dataFrom</code></br>
  3709. <em>
  3710. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3711. []ExternalSecretDataFromRemoteRef
  3712. </a>
  3713. </em>
  3714. </td>
  3715. <td>
  3716. <em>(Optional)</em>
  3717. <p>DataFrom is used to fetch all properties from a specific Provider data
  3718. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3719. </td>
  3720. </tr>
  3721. </table>
  3722. </td>
  3723. </tr>
  3724. <tr>
  3725. <td>
  3726. <code>status</code></br>
  3727. <em>
  3728. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  3729. ExternalSecretStatus
  3730. </a>
  3731. </em>
  3732. </td>
  3733. <td>
  3734. </td>
  3735. </tr>
  3736. </tbody>
  3737. </table>
  3738. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  3739. (<code>string</code> alias)</p></h3>
  3740. <p>
  3741. (<em>Appears on:</em>
  3742. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  3743. </p>
  3744. <p>
  3745. </p>
  3746. <table>
  3747. <thead>
  3748. <tr>
  3749. <th>Value</th>
  3750. <th>Description</th>
  3751. </tr>
  3752. </thead>
  3753. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  3754. <td></td>
  3755. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  3756. <td></td>
  3757. </tr></tbody>
  3758. </table>
  3759. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  3760. (<code>string</code> alias)</p></h3>
  3761. <p>
  3762. (<em>Appears on:</em>
  3763. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3764. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3765. </p>
  3766. <p>
  3767. </p>
  3768. <table>
  3769. <thead>
  3770. <tr>
  3771. <th>Value</th>
  3772. <th>Description</th>
  3773. </tr>
  3774. </thead>
  3775. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  3776. <td></td>
  3777. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  3778. <td></td>
  3779. </tr></tbody>
  3780. </table>
  3781. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  3782. (<code>string</code> alias)</p></h3>
  3783. <p>
  3784. (<em>Appears on:</em>
  3785. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3786. </p>
  3787. <p>
  3788. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  3789. </p>
  3790. <table>
  3791. <thead>
  3792. <tr>
  3793. <th>Value</th>
  3794. <th>Description</th>
  3795. </tr>
  3796. </thead>
  3797. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  3798. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  3799. </td>
  3800. </tr><tr><td><p>&#34;None&#34;</p></td>
  3801. <td><p>None does not create a Secret (future use with injector).</p>
  3802. </td>
  3803. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  3804. <td><p>Orphan creates the Secret and does not set the ownerReference.
  3805. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  3806. </td>
  3807. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  3808. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  3809. </td>
  3810. </tr></tbody>
  3811. </table>
  3812. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  3813. </h3>
  3814. <p>
  3815. (<em>Appears on:</em>
  3816. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3817. </p>
  3818. <p>
  3819. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  3820. </p>
  3821. <table>
  3822. <thead>
  3823. <tr>
  3824. <th>Field</th>
  3825. <th>Description</th>
  3826. </tr>
  3827. </thead>
  3828. <tbody>
  3829. <tr>
  3830. <td>
  3831. <code>secretKey</code></br>
  3832. <em>
  3833. string
  3834. </em>
  3835. </td>
  3836. <td>
  3837. <p>SecretKey defines the key in which the controller stores
  3838. the value. This is the key in the Kind=Secret</p>
  3839. </td>
  3840. </tr>
  3841. <tr>
  3842. <td>
  3843. <code>remoteRef</code></br>
  3844. <em>
  3845. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3846. ExternalSecretDataRemoteRef
  3847. </a>
  3848. </em>
  3849. </td>
  3850. <td>
  3851. <p>RemoteRef points to the remote secret and defines
  3852. which secret (version/property/..) to fetch.</p>
  3853. </td>
  3854. </tr>
  3855. <tr>
  3856. <td>
  3857. <code>sourceRef</code></br>
  3858. <em>
  3859. <a href="#external-secrets.io/v1beta1.StoreSourceRef">
  3860. StoreSourceRef
  3861. </a>
  3862. </em>
  3863. </td>
  3864. <td>
  3865. <p>SourceRef allows you to override the source
  3866. from which the value will pulled from.</p>
  3867. </td>
  3868. </tr>
  3869. </tbody>
  3870. </table>
  3871. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  3872. </h3>
  3873. <p>
  3874. (<em>Appears on:</em>
  3875. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3876. </p>
  3877. <p>
  3878. </p>
  3879. <table>
  3880. <thead>
  3881. <tr>
  3882. <th>Field</th>
  3883. <th>Description</th>
  3884. </tr>
  3885. </thead>
  3886. <tbody>
  3887. <tr>
  3888. <td>
  3889. <code>extract</code></br>
  3890. <em>
  3891. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3892. ExternalSecretDataRemoteRef
  3893. </a>
  3894. </em>
  3895. </td>
  3896. <td>
  3897. <em>(Optional)</em>
  3898. <p>Used to extract multiple key/value pairs from one secret
  3899. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3900. </td>
  3901. </tr>
  3902. <tr>
  3903. <td>
  3904. <code>find</code></br>
  3905. <em>
  3906. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  3907. ExternalSecretFind
  3908. </a>
  3909. </em>
  3910. </td>
  3911. <td>
  3912. <em>(Optional)</em>
  3913. <p>Used to find secrets based on tags or regular expressions
  3914. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3915. </td>
  3916. </tr>
  3917. <tr>
  3918. <td>
  3919. <code>rewrite</code></br>
  3920. <em>
  3921. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  3922. []ExternalSecretRewrite
  3923. </a>
  3924. </em>
  3925. </td>
  3926. <td>
  3927. <em>(Optional)</em>
  3928. <p>Used to rewrite secret Keys after getting them from the secret Provider
  3929. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  3930. </td>
  3931. </tr>
  3932. <tr>
  3933. <td>
  3934. <code>sourceRef</code></br>
  3935. <em>
  3936. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">
  3937. StoreGeneratorSourceRef
  3938. </a>
  3939. </em>
  3940. </td>
  3941. <td>
  3942. <p>SourceRef points to a store or generator
  3943. which contains secret values ready to use.
  3944. Use this in combination with Extract or Find pull values out of
  3945. a specific SecretStore.
  3946. When sourceRef points to a generator Extract or Find is not supported.
  3947. The generator returns a static map of values</p>
  3948. </td>
  3949. </tr>
  3950. </tbody>
  3951. </table>
  3952. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  3953. </h3>
  3954. <p>
  3955. (<em>Appears on:</em>
  3956. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  3957. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3958. </p>
  3959. <p>
  3960. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  3961. </p>
  3962. <table>
  3963. <thead>
  3964. <tr>
  3965. <th>Field</th>
  3966. <th>Description</th>
  3967. </tr>
  3968. </thead>
  3969. <tbody>
  3970. <tr>
  3971. <td>
  3972. <code>key</code></br>
  3973. <em>
  3974. string
  3975. </em>
  3976. </td>
  3977. <td>
  3978. <p>Key is the key used in the Provider, mandatory</p>
  3979. </td>
  3980. </tr>
  3981. <tr>
  3982. <td>
  3983. <code>metadataPolicy</code></br>
  3984. <em>
  3985. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  3986. ExternalSecretMetadataPolicy
  3987. </a>
  3988. </em>
  3989. </td>
  3990. <td>
  3991. <em>(Optional)</em>
  3992. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  3993. </td>
  3994. </tr>
  3995. <tr>
  3996. <td>
  3997. <code>property</code></br>
  3998. <em>
  3999. string
  4000. </em>
  4001. </td>
  4002. <td>
  4003. <em>(Optional)</em>
  4004. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4005. </td>
  4006. </tr>
  4007. <tr>
  4008. <td>
  4009. <code>version</code></br>
  4010. <em>
  4011. string
  4012. </em>
  4013. </td>
  4014. <td>
  4015. <em>(Optional)</em>
  4016. <p>Used to select a specific version of the Provider value, if supported</p>
  4017. </td>
  4018. </tr>
  4019. <tr>
  4020. <td>
  4021. <code>conversionStrategy</code></br>
  4022. <em>
  4023. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  4024. ExternalSecretConversionStrategy
  4025. </a>
  4026. </em>
  4027. </td>
  4028. <td>
  4029. <em>(Optional)</em>
  4030. <p>Used to define a conversion Strategy</p>
  4031. </td>
  4032. </tr>
  4033. <tr>
  4034. <td>
  4035. <code>decodingStrategy</code></br>
  4036. <em>
  4037. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  4038. ExternalSecretDecodingStrategy
  4039. </a>
  4040. </em>
  4041. </td>
  4042. <td>
  4043. <em>(Optional)</em>
  4044. <p>Used to define a decoding Strategy</p>
  4045. </td>
  4046. </tr>
  4047. </tbody>
  4048. </table>
  4049. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4050. (<code>string</code> alias)</p></h3>
  4051. <p>
  4052. (<em>Appears on:</em>
  4053. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4054. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4055. </p>
  4056. <p>
  4057. </p>
  4058. <table>
  4059. <thead>
  4060. <tr>
  4061. <th>Value</th>
  4062. <th>Description</th>
  4063. </tr>
  4064. </thead>
  4065. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4066. <td></td>
  4067. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4068. <td></td>
  4069. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4070. <td></td>
  4071. </tr><tr><td><p>&#34;None&#34;</p></td>
  4072. <td></td>
  4073. </tr></tbody>
  4074. </table>
  4075. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4076. (<code>string</code> alias)</p></h3>
  4077. <p>
  4078. (<em>Appears on:</em>
  4079. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4080. </p>
  4081. <p>
  4082. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4083. </p>
  4084. <table>
  4085. <thead>
  4086. <tr>
  4087. <th>Value</th>
  4088. <th>Description</th>
  4089. </tr>
  4090. </thead>
  4091. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4092. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4093. If a secret gets deleted on the provider side and is not accessible
  4094. anymore this is not considered an error and the ExternalSecret
  4095. does not go into SecretSyncedError status.</p>
  4096. </td>
  4097. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4098. <td><p>Merge removes keys in the secret, but not the secret itself.
  4099. If a secret gets deleted on the provider side and is not accessible
  4100. anymore this is not considered an error and the ExternalSecret
  4101. does not go into SecretSyncedError status.</p>
  4102. </td>
  4103. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4104. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4105. If a provider secret does not exist the ExternalSecret gets into the
  4106. SecretSyncedError status.</p>
  4107. </td>
  4108. </tr></tbody>
  4109. </table>
  4110. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  4111. </h3>
  4112. <p>
  4113. (<em>Appears on:</em>
  4114. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4115. </p>
  4116. <p>
  4117. </p>
  4118. <table>
  4119. <thead>
  4120. <tr>
  4121. <th>Field</th>
  4122. <th>Description</th>
  4123. </tr>
  4124. </thead>
  4125. <tbody>
  4126. <tr>
  4127. <td>
  4128. <code>path</code></br>
  4129. <em>
  4130. string
  4131. </em>
  4132. </td>
  4133. <td>
  4134. <em>(Optional)</em>
  4135. <p>A root path to start the find operations.</p>
  4136. </td>
  4137. </tr>
  4138. <tr>
  4139. <td>
  4140. <code>name</code></br>
  4141. <em>
  4142. <a href="#external-secrets.io/v1beta1.FindName">
  4143. FindName
  4144. </a>
  4145. </em>
  4146. </td>
  4147. <td>
  4148. <em>(Optional)</em>
  4149. <p>Finds secrets based on the name.</p>
  4150. </td>
  4151. </tr>
  4152. <tr>
  4153. <td>
  4154. <code>tags</code></br>
  4155. <em>
  4156. map[string]string
  4157. </em>
  4158. </td>
  4159. <td>
  4160. <em>(Optional)</em>
  4161. <p>Find secrets based on tags.</p>
  4162. </td>
  4163. </tr>
  4164. <tr>
  4165. <td>
  4166. <code>conversionStrategy</code></br>
  4167. <em>
  4168. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  4169. ExternalSecretConversionStrategy
  4170. </a>
  4171. </em>
  4172. </td>
  4173. <td>
  4174. <em>(Optional)</em>
  4175. <p>Used to define a conversion Strategy</p>
  4176. </td>
  4177. </tr>
  4178. <tr>
  4179. <td>
  4180. <code>decodingStrategy</code></br>
  4181. <em>
  4182. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  4183. ExternalSecretDecodingStrategy
  4184. </a>
  4185. </em>
  4186. </td>
  4187. <td>
  4188. <em>(Optional)</em>
  4189. <p>Used to define a decoding Strategy</p>
  4190. </td>
  4191. </tr>
  4192. </tbody>
  4193. </table>
  4194. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadata">ExternalSecretMetadata
  4195. </h3>
  4196. <p>
  4197. (<em>Appears on:</em>
  4198. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4199. </p>
  4200. <p>
  4201. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4202. </p>
  4203. <table>
  4204. <thead>
  4205. <tr>
  4206. <th>Field</th>
  4207. <th>Description</th>
  4208. </tr>
  4209. </thead>
  4210. <tbody>
  4211. <tr>
  4212. <td>
  4213. <code>annotations</code></br>
  4214. <em>
  4215. map[string]string
  4216. </em>
  4217. </td>
  4218. <td>
  4219. <em>(Optional)</em>
  4220. </td>
  4221. </tr>
  4222. <tr>
  4223. <td>
  4224. <code>labels</code></br>
  4225. <em>
  4226. map[string]string
  4227. </em>
  4228. </td>
  4229. <td>
  4230. <em>(Optional)</em>
  4231. </td>
  4232. </tr>
  4233. </tbody>
  4234. </table>
  4235. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4236. (<code>string</code> alias)</p></h3>
  4237. <p>
  4238. (<em>Appears on:</em>
  4239. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4240. </p>
  4241. <p>
  4242. </p>
  4243. <table>
  4244. <thead>
  4245. <tr>
  4246. <th>Value</th>
  4247. <th>Description</th>
  4248. </tr>
  4249. </thead>
  4250. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4251. <td></td>
  4252. </tr><tr><td><p>&#34;None&#34;</p></td>
  4253. <td></td>
  4254. </tr></tbody>
  4255. </table>
  4256. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  4257. </h3>
  4258. <p>
  4259. (<em>Appears on:</em>
  4260. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4261. </p>
  4262. <p>
  4263. </p>
  4264. <table>
  4265. <thead>
  4266. <tr>
  4267. <th>Field</th>
  4268. <th>Description</th>
  4269. </tr>
  4270. </thead>
  4271. <tbody>
  4272. <tr>
  4273. <td>
  4274. <code>regexp</code></br>
  4275. <em>
  4276. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  4277. ExternalSecretRewriteRegexp
  4278. </a>
  4279. </em>
  4280. </td>
  4281. <td>
  4282. <em>(Optional)</em>
  4283. <p>Used to rewrite with regular expressions.
  4284. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4285. </td>
  4286. </tr>
  4287. <tr>
  4288. <td>
  4289. <code>transform</code></br>
  4290. <em>
  4291. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteTransform">
  4292. ExternalSecretRewriteTransform
  4293. </a>
  4294. </em>
  4295. </td>
  4296. <td>
  4297. <em>(Optional)</em>
  4298. <p>Used to apply string transformation on the secrets.
  4299. The resulting key will be the output of the template applied by the operation.</p>
  4300. </td>
  4301. </tr>
  4302. </tbody>
  4303. </table>
  4304. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  4305. </h3>
  4306. <p>
  4307. (<em>Appears on:</em>
  4308. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4309. </p>
  4310. <p>
  4311. </p>
  4312. <table>
  4313. <thead>
  4314. <tr>
  4315. <th>Field</th>
  4316. <th>Description</th>
  4317. </tr>
  4318. </thead>
  4319. <tbody>
  4320. <tr>
  4321. <td>
  4322. <code>source</code></br>
  4323. <em>
  4324. string
  4325. </em>
  4326. </td>
  4327. <td>
  4328. <p>Used to define the regular expression of a re.Compiler.</p>
  4329. </td>
  4330. </tr>
  4331. <tr>
  4332. <td>
  4333. <code>target</code></br>
  4334. <em>
  4335. string
  4336. </em>
  4337. </td>
  4338. <td>
  4339. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  4340. </td>
  4341. </tr>
  4342. </tbody>
  4343. </table>
  4344. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  4345. </h3>
  4346. <p>
  4347. (<em>Appears on:</em>
  4348. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4349. </p>
  4350. <p>
  4351. </p>
  4352. <table>
  4353. <thead>
  4354. <tr>
  4355. <th>Field</th>
  4356. <th>Description</th>
  4357. </tr>
  4358. </thead>
  4359. <tbody>
  4360. <tr>
  4361. <td>
  4362. <code>template</code></br>
  4363. <em>
  4364. string
  4365. </em>
  4366. </td>
  4367. <td>
  4368. <p>Used to define the template to apply on the secret name.
  4369. <code>.value</code> will specify the secret name in the template.</p>
  4370. </td>
  4371. </tr>
  4372. </tbody>
  4373. </table>
  4374. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  4375. </h3>
  4376. <p>
  4377. (<em>Appears on:</em>
  4378. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  4379. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4380. </p>
  4381. <p>
  4382. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  4383. </p>
  4384. <table>
  4385. <thead>
  4386. <tr>
  4387. <th>Field</th>
  4388. <th>Description</th>
  4389. </tr>
  4390. </thead>
  4391. <tbody>
  4392. <tr>
  4393. <td>
  4394. <code>secretStoreRef</code></br>
  4395. <em>
  4396. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  4397. SecretStoreRef
  4398. </a>
  4399. </em>
  4400. </td>
  4401. <td>
  4402. <em>(Optional)</em>
  4403. </td>
  4404. </tr>
  4405. <tr>
  4406. <td>
  4407. <code>target</code></br>
  4408. <em>
  4409. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  4410. ExternalSecretTarget
  4411. </a>
  4412. </em>
  4413. </td>
  4414. <td>
  4415. <em>(Optional)</em>
  4416. </td>
  4417. </tr>
  4418. <tr>
  4419. <td>
  4420. <code>refreshInterval</code></br>
  4421. <em>
  4422. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4423. Kubernetes meta/v1.Duration
  4424. </a>
  4425. </em>
  4426. </td>
  4427. <td>
  4428. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  4429. 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;
  4430. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4431. </td>
  4432. </tr>
  4433. <tr>
  4434. <td>
  4435. <code>data</code></br>
  4436. <em>
  4437. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  4438. []ExternalSecretData
  4439. </a>
  4440. </em>
  4441. </td>
  4442. <td>
  4443. <em>(Optional)</em>
  4444. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4445. </td>
  4446. </tr>
  4447. <tr>
  4448. <td>
  4449. <code>dataFrom</code></br>
  4450. <em>
  4451. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  4452. []ExternalSecretDataFromRemoteRef
  4453. </a>
  4454. </em>
  4455. </td>
  4456. <td>
  4457. <em>(Optional)</em>
  4458. <p>DataFrom is used to fetch all properties from a specific Provider data
  4459. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4460. </td>
  4461. </tr>
  4462. </tbody>
  4463. </table>
  4464. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  4465. </h3>
  4466. <p>
  4467. (<em>Appears on:</em>
  4468. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4469. </p>
  4470. <p>
  4471. </p>
  4472. <table>
  4473. <thead>
  4474. <tr>
  4475. <th>Field</th>
  4476. <th>Description</th>
  4477. </tr>
  4478. </thead>
  4479. <tbody>
  4480. <tr>
  4481. <td>
  4482. <code>refreshTime</code></br>
  4483. <em>
  4484. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4485. Kubernetes meta/v1.Time
  4486. </a>
  4487. </em>
  4488. </td>
  4489. <td>
  4490. <p>refreshTime is the time and date the external secret was fetched and
  4491. the target secret updated</p>
  4492. </td>
  4493. </tr>
  4494. <tr>
  4495. <td>
  4496. <code>syncedResourceVersion</code></br>
  4497. <em>
  4498. string
  4499. </em>
  4500. </td>
  4501. <td>
  4502. <p>SyncedResourceVersion keeps track of the last synced version</p>
  4503. </td>
  4504. </tr>
  4505. <tr>
  4506. <td>
  4507. <code>conditions</code></br>
  4508. <em>
  4509. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  4510. []ExternalSecretStatusCondition
  4511. </a>
  4512. </em>
  4513. </td>
  4514. <td>
  4515. <em>(Optional)</em>
  4516. </td>
  4517. </tr>
  4518. <tr>
  4519. <td>
  4520. <code>binding</code></br>
  4521. <em>
  4522. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  4523. Kubernetes core/v1.LocalObjectReference
  4524. </a>
  4525. </em>
  4526. </td>
  4527. <td>
  4528. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  4529. </td>
  4530. </tr>
  4531. </tbody>
  4532. </table>
  4533. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  4534. </h3>
  4535. <p>
  4536. (<em>Appears on:</em>
  4537. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  4538. </p>
  4539. <p>
  4540. </p>
  4541. <table>
  4542. <thead>
  4543. <tr>
  4544. <th>Field</th>
  4545. <th>Description</th>
  4546. </tr>
  4547. </thead>
  4548. <tbody>
  4549. <tr>
  4550. <td>
  4551. <code>type</code></br>
  4552. <em>
  4553. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  4554. ExternalSecretConditionType
  4555. </a>
  4556. </em>
  4557. </td>
  4558. <td>
  4559. </td>
  4560. </tr>
  4561. <tr>
  4562. <td>
  4563. <code>status</code></br>
  4564. <em>
  4565. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  4566. Kubernetes core/v1.ConditionStatus
  4567. </a>
  4568. </em>
  4569. </td>
  4570. <td>
  4571. </td>
  4572. </tr>
  4573. <tr>
  4574. <td>
  4575. <code>reason</code></br>
  4576. <em>
  4577. string
  4578. </em>
  4579. </td>
  4580. <td>
  4581. <em>(Optional)</em>
  4582. </td>
  4583. </tr>
  4584. <tr>
  4585. <td>
  4586. <code>message</code></br>
  4587. <em>
  4588. string
  4589. </em>
  4590. </td>
  4591. <td>
  4592. <em>(Optional)</em>
  4593. </td>
  4594. </tr>
  4595. <tr>
  4596. <td>
  4597. <code>lastTransitionTime</code></br>
  4598. <em>
  4599. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4600. Kubernetes meta/v1.Time
  4601. </a>
  4602. </em>
  4603. </td>
  4604. <td>
  4605. <em>(Optional)</em>
  4606. </td>
  4607. </tr>
  4608. </tbody>
  4609. </table>
  4610. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  4611. </h3>
  4612. <p>
  4613. (<em>Appears on:</em>
  4614. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4615. </p>
  4616. <p>
  4617. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  4618. There can be only one target per ExternalSecret.</p>
  4619. </p>
  4620. <table>
  4621. <thead>
  4622. <tr>
  4623. <th>Field</th>
  4624. <th>Description</th>
  4625. </tr>
  4626. </thead>
  4627. <tbody>
  4628. <tr>
  4629. <td>
  4630. <code>name</code></br>
  4631. <em>
  4632. string
  4633. </em>
  4634. </td>
  4635. <td>
  4636. <em>(Optional)</em>
  4637. <p>Name defines the name of the Secret resource to be managed
  4638. This field is immutable
  4639. Defaults to the .metadata.name of the ExternalSecret resource</p>
  4640. </td>
  4641. </tr>
  4642. <tr>
  4643. <td>
  4644. <code>creationPolicy</code></br>
  4645. <em>
  4646. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  4647. ExternalSecretCreationPolicy
  4648. </a>
  4649. </em>
  4650. </td>
  4651. <td>
  4652. <em>(Optional)</em>
  4653. <p>CreationPolicy defines rules on how to create the resulting Secret
  4654. Defaults to &lsquo;Owner&rsquo;</p>
  4655. </td>
  4656. </tr>
  4657. <tr>
  4658. <td>
  4659. <code>deletionPolicy</code></br>
  4660. <em>
  4661. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  4662. ExternalSecretDeletionPolicy
  4663. </a>
  4664. </em>
  4665. </td>
  4666. <td>
  4667. <em>(Optional)</em>
  4668. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  4669. Defaults to &lsquo;Retain&rsquo;</p>
  4670. </td>
  4671. </tr>
  4672. <tr>
  4673. <td>
  4674. <code>template</code></br>
  4675. <em>
  4676. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  4677. ExternalSecretTemplate
  4678. </a>
  4679. </em>
  4680. </td>
  4681. <td>
  4682. <em>(Optional)</em>
  4683. <p>Template defines a blueprint for the created Secret resource.</p>
  4684. </td>
  4685. </tr>
  4686. <tr>
  4687. <td>
  4688. <code>immutable</code></br>
  4689. <em>
  4690. bool
  4691. </em>
  4692. </td>
  4693. <td>
  4694. <em>(Optional)</em>
  4695. <p>Immutable defines if the final secret will be immutable</p>
  4696. </td>
  4697. </tr>
  4698. </tbody>
  4699. </table>
  4700. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  4701. </h3>
  4702. <p>
  4703. (<em>Appears on:</em>
  4704. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4705. </p>
  4706. <p>
  4707. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  4708. 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>
  4709. </p>
  4710. <table>
  4711. <thead>
  4712. <tr>
  4713. <th>Field</th>
  4714. <th>Description</th>
  4715. </tr>
  4716. </thead>
  4717. <tbody>
  4718. <tr>
  4719. <td>
  4720. <code>type</code></br>
  4721. <em>
  4722. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  4723. Kubernetes core/v1.SecretType
  4724. </a>
  4725. </em>
  4726. </td>
  4727. <td>
  4728. <em>(Optional)</em>
  4729. </td>
  4730. </tr>
  4731. <tr>
  4732. <td>
  4733. <code>engineVersion</code></br>
  4734. <em>
  4735. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  4736. TemplateEngineVersion
  4737. </a>
  4738. </em>
  4739. </td>
  4740. <td>
  4741. <p>EngineVersion specifies the template engine version
  4742. that should be used to compile/execute the
  4743. template specified in .data and .templateFrom[].</p>
  4744. </td>
  4745. </tr>
  4746. <tr>
  4747. <td>
  4748. <code>metadata</code></br>
  4749. <em>
  4750. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  4751. ExternalSecretTemplateMetadata
  4752. </a>
  4753. </em>
  4754. </td>
  4755. <td>
  4756. <em>(Optional)</em>
  4757. </td>
  4758. </tr>
  4759. <tr>
  4760. <td>
  4761. <code>mergePolicy</code></br>
  4762. <em>
  4763. <a href="#external-secrets.io/v1beta1.TemplateMergePolicy">
  4764. TemplateMergePolicy
  4765. </a>
  4766. </em>
  4767. </td>
  4768. <td>
  4769. </td>
  4770. </tr>
  4771. <tr>
  4772. <td>
  4773. <code>data</code></br>
  4774. <em>
  4775. map[string]string
  4776. </em>
  4777. </td>
  4778. <td>
  4779. <em>(Optional)</em>
  4780. </td>
  4781. </tr>
  4782. <tr>
  4783. <td>
  4784. <code>templateFrom</code></br>
  4785. <em>
  4786. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  4787. []TemplateFrom
  4788. </a>
  4789. </em>
  4790. </td>
  4791. <td>
  4792. <em>(Optional)</em>
  4793. </td>
  4794. </tr>
  4795. </tbody>
  4796. </table>
  4797. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  4798. </h3>
  4799. <p>
  4800. (<em>Appears on:</em>
  4801. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4802. </p>
  4803. <p>
  4804. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  4805. </p>
  4806. <table>
  4807. <thead>
  4808. <tr>
  4809. <th>Field</th>
  4810. <th>Description</th>
  4811. </tr>
  4812. </thead>
  4813. <tbody>
  4814. <tr>
  4815. <td>
  4816. <code>annotations</code></br>
  4817. <em>
  4818. map[string]string
  4819. </em>
  4820. </td>
  4821. <td>
  4822. <em>(Optional)</em>
  4823. </td>
  4824. </tr>
  4825. <tr>
  4826. <td>
  4827. <code>labels</code></br>
  4828. <em>
  4829. map[string]string
  4830. </em>
  4831. </td>
  4832. <td>
  4833. <em>(Optional)</em>
  4834. </td>
  4835. </tr>
  4836. </tbody>
  4837. </table>
  4838. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  4839. </h3>
  4840. <p>
  4841. </p>
  4842. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  4843. </h3>
  4844. <p>
  4845. (<em>Appears on:</em>
  4846. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4847. </p>
  4848. <p>
  4849. <p>FakeProvider configures a fake provider that returns static values.</p>
  4850. </p>
  4851. <table>
  4852. <thead>
  4853. <tr>
  4854. <th>Field</th>
  4855. <th>Description</th>
  4856. </tr>
  4857. </thead>
  4858. <tbody>
  4859. <tr>
  4860. <td>
  4861. <code>data</code></br>
  4862. <em>
  4863. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  4864. []FakeProviderData
  4865. </a>
  4866. </em>
  4867. </td>
  4868. <td>
  4869. </td>
  4870. </tr>
  4871. </tbody>
  4872. </table>
  4873. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  4874. </h3>
  4875. <p>
  4876. (<em>Appears on:</em>
  4877. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  4878. </p>
  4879. <p>
  4880. </p>
  4881. <table>
  4882. <thead>
  4883. <tr>
  4884. <th>Field</th>
  4885. <th>Description</th>
  4886. </tr>
  4887. </thead>
  4888. <tbody>
  4889. <tr>
  4890. <td>
  4891. <code>key</code></br>
  4892. <em>
  4893. string
  4894. </em>
  4895. </td>
  4896. <td>
  4897. </td>
  4898. </tr>
  4899. <tr>
  4900. <td>
  4901. <code>value</code></br>
  4902. <em>
  4903. string
  4904. </em>
  4905. </td>
  4906. <td>
  4907. </td>
  4908. </tr>
  4909. <tr>
  4910. <td>
  4911. <code>valueMap</code></br>
  4912. <em>
  4913. map[string]string
  4914. </em>
  4915. </td>
  4916. <td>
  4917. <p>Deprecated: ValueMap is deprecated and is intended to be removed in the future, use the <code>value</code> field instead.</p>
  4918. </td>
  4919. </tr>
  4920. <tr>
  4921. <td>
  4922. <code>version</code></br>
  4923. <em>
  4924. string
  4925. </em>
  4926. </td>
  4927. <td>
  4928. </td>
  4929. </tr>
  4930. </tbody>
  4931. </table>
  4932. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  4933. </h3>
  4934. <p>
  4935. (<em>Appears on:</em>
  4936. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4937. </p>
  4938. <p>
  4939. </p>
  4940. <table>
  4941. <thead>
  4942. <tr>
  4943. <th>Field</th>
  4944. <th>Description</th>
  4945. </tr>
  4946. </thead>
  4947. <tbody>
  4948. <tr>
  4949. <td>
  4950. <code>regexp</code></br>
  4951. <em>
  4952. string
  4953. </em>
  4954. </td>
  4955. <td>
  4956. <em>(Optional)</em>
  4957. <p>Finds secrets base</p>
  4958. </td>
  4959. </tr>
  4960. </tbody>
  4961. </table>
  4962. <h3 id="external-secrets.io/v1beta1.FortanixProvider">FortanixProvider
  4963. </h3>
  4964. <p>
  4965. (<em>Appears on:</em>
  4966. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4967. </p>
  4968. <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>apiUrl</code></br>
  4981. <em>
  4982. string
  4983. </em>
  4984. </td>
  4985. <td>
  4986. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  4987. </td>
  4988. </tr>
  4989. <tr>
  4990. <td>
  4991. <code>apiKey</code></br>
  4992. <em>
  4993. <a href="#external-secrets.io/v1beta1.FortanixProviderSecretRef">
  4994. FortanixProviderSecretRef
  4995. </a>
  4996. </em>
  4997. </td>
  4998. <td>
  4999. <p>APIKey is the API token to access SDKMS Applications.</p>
  5000. </td>
  5001. </tr>
  5002. </tbody>
  5003. </table>
  5004. <h3 id="external-secrets.io/v1beta1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5005. </h3>
  5006. <p>
  5007. (<em>Appears on:</em>
  5008. <a href="#external-secrets.io/v1beta1.FortanixProvider">FortanixProvider</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>secretRef</code></br>
  5023. <em>
  5024. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5025. External Secrets meta/v1.SecretKeySelector
  5026. </a>
  5027. </em>
  5028. </td>
  5029. <td>
  5030. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5031. </td>
  5032. </tr>
  5033. </tbody>
  5034. </table>
  5035. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  5036. </h3>
  5037. <p>
  5038. (<em>Appears on:</em>
  5039. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  5040. </p>
  5041. <p>
  5042. </p>
  5043. <table>
  5044. <thead>
  5045. <tr>
  5046. <th>Field</th>
  5047. <th>Description</th>
  5048. </tr>
  5049. </thead>
  5050. <tbody>
  5051. <tr>
  5052. <td>
  5053. <code>secretRef</code></br>
  5054. <em>
  5055. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  5056. GCPSMAuthSecretRef
  5057. </a>
  5058. </em>
  5059. </td>
  5060. <td>
  5061. <em>(Optional)</em>
  5062. </td>
  5063. </tr>
  5064. <tr>
  5065. <td>
  5066. <code>workloadIdentity</code></br>
  5067. <em>
  5068. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  5069. GCPWorkloadIdentity
  5070. </a>
  5071. </em>
  5072. </td>
  5073. <td>
  5074. <em>(Optional)</em>
  5075. </td>
  5076. </tr>
  5077. </tbody>
  5078. </table>
  5079. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5080. </h3>
  5081. <p>
  5082. (<em>Appears on:</em>
  5083. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  5084. </p>
  5085. <p>
  5086. </p>
  5087. <table>
  5088. <thead>
  5089. <tr>
  5090. <th>Field</th>
  5091. <th>Description</th>
  5092. </tr>
  5093. </thead>
  5094. <tbody>
  5095. <tr>
  5096. <td>
  5097. <code>secretAccessKeySecretRef</code></br>
  5098. <em>
  5099. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5100. External Secrets meta/v1.SecretKeySelector
  5101. </a>
  5102. </em>
  5103. </td>
  5104. <td>
  5105. <em>(Optional)</em>
  5106. <p>The SecretAccessKey is used for authentication</p>
  5107. </td>
  5108. </tr>
  5109. </tbody>
  5110. </table>
  5111. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  5112. </h3>
  5113. <p>
  5114. (<em>Appears on:</em>
  5115. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5116. </p>
  5117. <p>
  5118. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  5119. </p>
  5120. <table>
  5121. <thead>
  5122. <tr>
  5123. <th>Field</th>
  5124. <th>Description</th>
  5125. </tr>
  5126. </thead>
  5127. <tbody>
  5128. <tr>
  5129. <td>
  5130. <code>auth</code></br>
  5131. <em>
  5132. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  5133. GCPSMAuth
  5134. </a>
  5135. </em>
  5136. </td>
  5137. <td>
  5138. <em>(Optional)</em>
  5139. <p>Auth defines the information necessary to authenticate against GCP</p>
  5140. </td>
  5141. </tr>
  5142. <tr>
  5143. <td>
  5144. <code>projectID</code></br>
  5145. <em>
  5146. string
  5147. </em>
  5148. </td>
  5149. <td>
  5150. <p>ProjectID project where secret is located</p>
  5151. </td>
  5152. </tr>
  5153. </tbody>
  5154. </table>
  5155. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  5156. </h3>
  5157. <p>
  5158. (<em>Appears on:</em>
  5159. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  5160. </p>
  5161. <p>
  5162. </p>
  5163. <table>
  5164. <thead>
  5165. <tr>
  5166. <th>Field</th>
  5167. <th>Description</th>
  5168. </tr>
  5169. </thead>
  5170. <tbody>
  5171. <tr>
  5172. <td>
  5173. <code>serviceAccountRef</code></br>
  5174. <em>
  5175. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5176. External Secrets meta/v1.ServiceAccountSelector
  5177. </a>
  5178. </em>
  5179. </td>
  5180. <td>
  5181. </td>
  5182. </tr>
  5183. <tr>
  5184. <td>
  5185. <code>clusterLocation</code></br>
  5186. <em>
  5187. string
  5188. </em>
  5189. </td>
  5190. <td>
  5191. </td>
  5192. </tr>
  5193. <tr>
  5194. <td>
  5195. <code>clusterName</code></br>
  5196. <em>
  5197. string
  5198. </em>
  5199. </td>
  5200. <td>
  5201. </td>
  5202. </tr>
  5203. <tr>
  5204. <td>
  5205. <code>clusterProjectID</code></br>
  5206. <em>
  5207. string
  5208. </em>
  5209. </td>
  5210. <td>
  5211. </td>
  5212. </tr>
  5213. </tbody>
  5214. </table>
  5215. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  5216. </h3>
  5217. <p>
  5218. (<em>Appears on:</em>
  5219. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  5220. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  5221. </p>
  5222. <p>
  5223. <p>GeneratorRef points to a generator custom resource.</p>
  5224. </p>
  5225. <table>
  5226. <thead>
  5227. <tr>
  5228. <th>Field</th>
  5229. <th>Description</th>
  5230. </tr>
  5231. </thead>
  5232. <tbody>
  5233. <tr>
  5234. <td>
  5235. <code>apiVersion</code></br>
  5236. <em>
  5237. string
  5238. </em>
  5239. </td>
  5240. <td>
  5241. <p>Specify the apiVersion of the generator resource</p>
  5242. </td>
  5243. </tr>
  5244. <tr>
  5245. <td>
  5246. <code>kind</code></br>
  5247. <em>
  5248. string
  5249. </em>
  5250. </td>
  5251. <td>
  5252. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  5253. </td>
  5254. </tr>
  5255. <tr>
  5256. <td>
  5257. <code>name</code></br>
  5258. <em>
  5259. string
  5260. </em>
  5261. </td>
  5262. <td>
  5263. <p>Specify the name of the generator resource</p>
  5264. </td>
  5265. </tr>
  5266. </tbody>
  5267. </table>
  5268. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  5269. </h3>
  5270. <p>
  5271. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  5272. or a namespaced SecretStore.</p>
  5273. </p>
  5274. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  5275. </h3>
  5276. <p>
  5277. </p>
  5278. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  5279. </h3>
  5280. <p>
  5281. (<em>Appears on:</em>
  5282. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  5283. </p>
  5284. <p>
  5285. </p>
  5286. <table>
  5287. <thead>
  5288. <tr>
  5289. <th>Field</th>
  5290. <th>Description</th>
  5291. </tr>
  5292. </thead>
  5293. <tbody>
  5294. <tr>
  5295. <td>
  5296. <code>SecretRef</code></br>
  5297. <em>
  5298. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  5299. GitlabSecretRef
  5300. </a>
  5301. </em>
  5302. </td>
  5303. <td>
  5304. </td>
  5305. </tr>
  5306. </tbody>
  5307. </table>
  5308. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  5309. </h3>
  5310. <p>
  5311. (<em>Appears on:</em>
  5312. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5313. </p>
  5314. <p>
  5315. <p>Configures a store to sync secrets with a GitLab instance.</p>
  5316. </p>
  5317. <table>
  5318. <thead>
  5319. <tr>
  5320. <th>Field</th>
  5321. <th>Description</th>
  5322. </tr>
  5323. </thead>
  5324. <tbody>
  5325. <tr>
  5326. <td>
  5327. <code>url</code></br>
  5328. <em>
  5329. string
  5330. </em>
  5331. </td>
  5332. <td>
  5333. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  5334. </td>
  5335. </tr>
  5336. <tr>
  5337. <td>
  5338. <code>auth</code></br>
  5339. <em>
  5340. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  5341. GitlabAuth
  5342. </a>
  5343. </em>
  5344. </td>
  5345. <td>
  5346. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  5347. </td>
  5348. </tr>
  5349. <tr>
  5350. <td>
  5351. <code>projectID</code></br>
  5352. <em>
  5353. string
  5354. </em>
  5355. </td>
  5356. <td>
  5357. <p>ProjectID specifies a project where secrets are located.</p>
  5358. </td>
  5359. </tr>
  5360. <tr>
  5361. <td>
  5362. <code>inheritFromGroups</code></br>
  5363. <em>
  5364. bool
  5365. </em>
  5366. </td>
  5367. <td>
  5368. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  5369. </td>
  5370. </tr>
  5371. <tr>
  5372. <td>
  5373. <code>groupIDs</code></br>
  5374. <em>
  5375. []string
  5376. </em>
  5377. </td>
  5378. <td>
  5379. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  5380. </td>
  5381. </tr>
  5382. <tr>
  5383. <td>
  5384. <code>environment</code></br>
  5385. <em>
  5386. string
  5387. </em>
  5388. </td>
  5389. <td>
  5390. <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>
  5391. </td>
  5392. </tr>
  5393. </tbody>
  5394. </table>
  5395. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  5396. </h3>
  5397. <p>
  5398. (<em>Appears on:</em>
  5399. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  5400. </p>
  5401. <p>
  5402. </p>
  5403. <table>
  5404. <thead>
  5405. <tr>
  5406. <th>Field</th>
  5407. <th>Description</th>
  5408. </tr>
  5409. </thead>
  5410. <tbody>
  5411. <tr>
  5412. <td>
  5413. <code>accessToken</code></br>
  5414. <em>
  5415. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5416. External Secrets meta/v1.SecretKeySelector
  5417. </a>
  5418. </em>
  5419. </td>
  5420. <td>
  5421. <p>AccessToken is used for authentication.</p>
  5422. </td>
  5423. </tr>
  5424. </tbody>
  5425. </table>
  5426. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  5427. </h3>
  5428. <p>
  5429. (<em>Appears on:</em>
  5430. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  5431. </p>
  5432. <p>
  5433. </p>
  5434. <table>
  5435. <thead>
  5436. <tr>
  5437. <th>Field</th>
  5438. <th>Description</th>
  5439. </tr>
  5440. </thead>
  5441. <tbody>
  5442. <tr>
  5443. <td>
  5444. <code>secretRef</code></br>
  5445. <em>
  5446. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  5447. IBMAuthSecretRef
  5448. </a>
  5449. </em>
  5450. </td>
  5451. <td>
  5452. </td>
  5453. </tr>
  5454. <tr>
  5455. <td>
  5456. <code>containerAuth</code></br>
  5457. <em>
  5458. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  5459. IBMAuthContainerAuth
  5460. </a>
  5461. </em>
  5462. </td>
  5463. <td>
  5464. </td>
  5465. </tr>
  5466. </tbody>
  5467. </table>
  5468. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  5469. </h3>
  5470. <p>
  5471. (<em>Appears on:</em>
  5472. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5473. </p>
  5474. <p>
  5475. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  5476. </p>
  5477. <table>
  5478. <thead>
  5479. <tr>
  5480. <th>Field</th>
  5481. <th>Description</th>
  5482. </tr>
  5483. </thead>
  5484. <tbody>
  5485. <tr>
  5486. <td>
  5487. <code>profile</code></br>
  5488. <em>
  5489. string
  5490. </em>
  5491. </td>
  5492. <td>
  5493. <p>the IBM Trusted Profile</p>
  5494. </td>
  5495. </tr>
  5496. <tr>
  5497. <td>
  5498. <code>tokenLocation</code></br>
  5499. <em>
  5500. string
  5501. </em>
  5502. </td>
  5503. <td>
  5504. <p>Location the token is mounted on the pod</p>
  5505. </td>
  5506. </tr>
  5507. <tr>
  5508. <td>
  5509. <code>iamEndpoint</code></br>
  5510. <em>
  5511. string
  5512. </em>
  5513. </td>
  5514. <td>
  5515. </td>
  5516. </tr>
  5517. </tbody>
  5518. </table>
  5519. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  5520. </h3>
  5521. <p>
  5522. (<em>Appears on:</em>
  5523. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5524. </p>
  5525. <p>
  5526. </p>
  5527. <table>
  5528. <thead>
  5529. <tr>
  5530. <th>Field</th>
  5531. <th>Description</th>
  5532. </tr>
  5533. </thead>
  5534. <tbody>
  5535. <tr>
  5536. <td>
  5537. <code>secretApiKeySecretRef</code></br>
  5538. <em>
  5539. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5540. External Secrets meta/v1.SecretKeySelector
  5541. </a>
  5542. </em>
  5543. </td>
  5544. <td>
  5545. <p>The SecretAccessKey is used for authentication</p>
  5546. </td>
  5547. </tr>
  5548. </tbody>
  5549. </table>
  5550. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  5551. </h3>
  5552. <p>
  5553. (<em>Appears on:</em>
  5554. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5555. </p>
  5556. <p>
  5557. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  5558. backend.</p>
  5559. </p>
  5560. <table>
  5561. <thead>
  5562. <tr>
  5563. <th>Field</th>
  5564. <th>Description</th>
  5565. </tr>
  5566. </thead>
  5567. <tbody>
  5568. <tr>
  5569. <td>
  5570. <code>auth</code></br>
  5571. <em>
  5572. <a href="#external-secrets.io/v1beta1.IBMAuth">
  5573. IBMAuth
  5574. </a>
  5575. </em>
  5576. </td>
  5577. <td>
  5578. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  5579. </td>
  5580. </tr>
  5581. <tr>
  5582. <td>
  5583. <code>serviceUrl</code></br>
  5584. <em>
  5585. string
  5586. </em>
  5587. </td>
  5588. <td>
  5589. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  5590. </td>
  5591. </tr>
  5592. </tbody>
  5593. </table>
  5594. <h3 id="external-secrets.io/v1beta1.KeeperSecurityProvider">KeeperSecurityProvider
  5595. </h3>
  5596. <p>
  5597. (<em>Appears on:</em>
  5598. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5599. </p>
  5600. <p>
  5601. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  5602. </p>
  5603. <table>
  5604. <thead>
  5605. <tr>
  5606. <th>Field</th>
  5607. <th>Description</th>
  5608. </tr>
  5609. </thead>
  5610. <tbody>
  5611. <tr>
  5612. <td>
  5613. <code>authRef</code></br>
  5614. <em>
  5615. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5616. External Secrets meta/v1.SecretKeySelector
  5617. </a>
  5618. </em>
  5619. </td>
  5620. <td>
  5621. </td>
  5622. </tr>
  5623. <tr>
  5624. <td>
  5625. <code>folderID</code></br>
  5626. <em>
  5627. string
  5628. </em>
  5629. </td>
  5630. <td>
  5631. </td>
  5632. </tr>
  5633. </tbody>
  5634. </table>
  5635. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  5636. </h3>
  5637. <p>
  5638. (<em>Appears on:</em>
  5639. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</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>cert</code></br>
  5654. <em>
  5655. <a href="#external-secrets.io/v1beta1.CertAuth">
  5656. CertAuth
  5657. </a>
  5658. </em>
  5659. </td>
  5660. <td>
  5661. <em>(Optional)</em>
  5662. <p>has both clientCert and clientKey as secretKeySelector</p>
  5663. </td>
  5664. </tr>
  5665. <tr>
  5666. <td>
  5667. <code>token</code></br>
  5668. <em>
  5669. <a href="#external-secrets.io/v1beta1.TokenAuth">
  5670. TokenAuth
  5671. </a>
  5672. </em>
  5673. </td>
  5674. <td>
  5675. <em>(Optional)</em>
  5676. <p>use static token to authenticate with</p>
  5677. </td>
  5678. </tr>
  5679. <tr>
  5680. <td>
  5681. <code>serviceAccount</code></br>
  5682. <em>
  5683. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5684. External Secrets meta/v1.ServiceAccountSelector
  5685. </a>
  5686. </em>
  5687. </td>
  5688. <td>
  5689. <em>(Optional)</em>
  5690. <p>points to a service account that should be used for authentication</p>
  5691. </td>
  5692. </tr>
  5693. </tbody>
  5694. </table>
  5695. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  5696. </h3>
  5697. <p>
  5698. (<em>Appears on:</em>
  5699. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5700. </p>
  5701. <p>
  5702. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  5703. </p>
  5704. <table>
  5705. <thead>
  5706. <tr>
  5707. <th>Field</th>
  5708. <th>Description</th>
  5709. </tr>
  5710. </thead>
  5711. <tbody>
  5712. <tr>
  5713. <td>
  5714. <code>server</code></br>
  5715. <em>
  5716. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  5717. KubernetesServer
  5718. </a>
  5719. </em>
  5720. </td>
  5721. <td>
  5722. <p>configures the Kubernetes server Address.</p>
  5723. </td>
  5724. </tr>
  5725. <tr>
  5726. <td>
  5727. <code>auth</code></br>
  5728. <em>
  5729. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  5730. KubernetesAuth
  5731. </a>
  5732. </em>
  5733. </td>
  5734. <td>
  5735. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  5736. </td>
  5737. </tr>
  5738. <tr>
  5739. <td>
  5740. <code>remoteNamespace</code></br>
  5741. <em>
  5742. string
  5743. </em>
  5744. </td>
  5745. <td>
  5746. <em>(Optional)</em>
  5747. <p>Remote namespace to fetch the secrets from</p>
  5748. </td>
  5749. </tr>
  5750. </tbody>
  5751. </table>
  5752. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  5753. </h3>
  5754. <p>
  5755. (<em>Appears on:</em>
  5756. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5757. </p>
  5758. <p>
  5759. </p>
  5760. <table>
  5761. <thead>
  5762. <tr>
  5763. <th>Field</th>
  5764. <th>Description</th>
  5765. </tr>
  5766. </thead>
  5767. <tbody>
  5768. <tr>
  5769. <td>
  5770. <code>url</code></br>
  5771. <em>
  5772. string
  5773. </em>
  5774. </td>
  5775. <td>
  5776. <em>(Optional)</em>
  5777. <p>configures the Kubernetes server Address.</p>
  5778. </td>
  5779. </tr>
  5780. <tr>
  5781. <td>
  5782. <code>caBundle</code></br>
  5783. <em>
  5784. []byte
  5785. </em>
  5786. </td>
  5787. <td>
  5788. <em>(Optional)</em>
  5789. <p>CABundle is a base64-encoded CA certificate</p>
  5790. </td>
  5791. </tr>
  5792. <tr>
  5793. <td>
  5794. <code>caProvider</code></br>
  5795. <em>
  5796. <a href="#external-secrets.io/v1beta1.CAProvider">
  5797. CAProvider
  5798. </a>
  5799. </em>
  5800. </td>
  5801. <td>
  5802. <em>(Optional)</em>
  5803. <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>
  5804. </td>
  5805. </tr>
  5806. </tbody>
  5807. </table>
  5808. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  5809. </h3>
  5810. <p>
  5811. <p>NoSecretError shall be returned when a GetSecret can not find the
  5812. desired secret. This is used for deletionPolicy.</p>
  5813. </p>
  5814. <h3 id="external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  5815. </h3>
  5816. <p>
  5817. (<em>Appears on:</em>
  5818. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider</a>)
  5819. </p>
  5820. <p>
  5821. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  5822. </p>
  5823. <table>
  5824. <thead>
  5825. <tr>
  5826. <th>Field</th>
  5827. <th>Description</th>
  5828. </tr>
  5829. </thead>
  5830. <tbody>
  5831. <tr>
  5832. <td>
  5833. <code>apiKeyRef</code></br>
  5834. <em>
  5835. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5836. External Secrets meta/v1.SecretKeySelector
  5837. </a>
  5838. </em>
  5839. </td>
  5840. <td>
  5841. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  5842. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  5843. </td>
  5844. </tr>
  5845. <tr>
  5846. <td>
  5847. <code>passcodeRef</code></br>
  5848. <em>
  5849. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5850. External Secrets meta/v1.SecretKeySelector
  5851. </a>
  5852. </em>
  5853. </td>
  5854. <td>
  5855. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  5856. </td>
  5857. </tr>
  5858. </tbody>
  5859. </table>
  5860. <h3 id="external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider
  5861. </h3>
  5862. <p>
  5863. (<em>Appears on:</em>
  5864. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5865. </p>
  5866. <p>
  5867. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  5868. Project and Config are required if not using a Service Token.</p>
  5869. </p>
  5870. <table>
  5871. <thead>
  5872. <tr>
  5873. <th>Field</th>
  5874. <th>Description</th>
  5875. </tr>
  5876. </thead>
  5877. <tbody>
  5878. <tr>
  5879. <td>
  5880. <code>auth</code></br>
  5881. <em>
  5882. <a href="#external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">
  5883. OnboardbaseAuthSecretRef
  5884. </a>
  5885. </em>
  5886. </td>
  5887. <td>
  5888. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  5889. </td>
  5890. </tr>
  5891. <tr>
  5892. <td>
  5893. <code>apiHost</code></br>
  5894. <em>
  5895. string
  5896. </em>
  5897. </td>
  5898. <td>
  5899. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  5900. </td>
  5901. </tr>
  5902. <tr>
  5903. <td>
  5904. <code>project</code></br>
  5905. <em>
  5906. string
  5907. </em>
  5908. </td>
  5909. <td>
  5910. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  5911. </td>
  5912. </tr>
  5913. <tr>
  5914. <td>
  5915. <code>environment</code></br>
  5916. <em>
  5917. string
  5918. </em>
  5919. </td>
  5920. <td>
  5921. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  5922. </td>
  5923. </tr>
  5924. </tbody>
  5925. </table>
  5926. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  5927. </h3>
  5928. <p>
  5929. (<em>Appears on:</em>
  5930. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  5931. </p>
  5932. <p>
  5933. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  5934. </p>
  5935. <table>
  5936. <thead>
  5937. <tr>
  5938. <th>Field</th>
  5939. <th>Description</th>
  5940. </tr>
  5941. </thead>
  5942. <tbody>
  5943. <tr>
  5944. <td>
  5945. <code>secretRef</code></br>
  5946. <em>
  5947. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  5948. OnePasswordAuthSecretRef
  5949. </a>
  5950. </em>
  5951. </td>
  5952. <td>
  5953. </td>
  5954. </tr>
  5955. </tbody>
  5956. </table>
  5957. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  5958. </h3>
  5959. <p>
  5960. (<em>Appears on:</em>
  5961. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  5962. </p>
  5963. <p>
  5964. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  5965. </p>
  5966. <table>
  5967. <thead>
  5968. <tr>
  5969. <th>Field</th>
  5970. <th>Description</th>
  5971. </tr>
  5972. </thead>
  5973. <tbody>
  5974. <tr>
  5975. <td>
  5976. <code>connectTokenSecretRef</code></br>
  5977. <em>
  5978. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5979. External Secrets meta/v1.SecretKeySelector
  5980. </a>
  5981. </em>
  5982. </td>
  5983. <td>
  5984. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  5985. </td>
  5986. </tr>
  5987. </tbody>
  5988. </table>
  5989. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  5990. </h3>
  5991. <p>
  5992. (<em>Appears on:</em>
  5993. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5994. </p>
  5995. <p>
  5996. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  5997. </p>
  5998. <table>
  5999. <thead>
  6000. <tr>
  6001. <th>Field</th>
  6002. <th>Description</th>
  6003. </tr>
  6004. </thead>
  6005. <tbody>
  6006. <tr>
  6007. <td>
  6008. <code>auth</code></br>
  6009. <em>
  6010. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  6011. OnePasswordAuth
  6012. </a>
  6013. </em>
  6014. </td>
  6015. <td>
  6016. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  6017. </td>
  6018. </tr>
  6019. <tr>
  6020. <td>
  6021. <code>connectHost</code></br>
  6022. <em>
  6023. string
  6024. </em>
  6025. </td>
  6026. <td>
  6027. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  6028. </td>
  6029. </tr>
  6030. <tr>
  6031. <td>
  6032. <code>vaults</code></br>
  6033. <em>
  6034. map[string]int
  6035. </em>
  6036. </td>
  6037. <td>
  6038. <p>Vaults defines which OnePassword vaults to search in which order</p>
  6039. </td>
  6040. </tr>
  6041. </tbody>
  6042. </table>
  6043. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  6044. </h3>
  6045. <p>
  6046. (<em>Appears on:</em>
  6047. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  6048. </p>
  6049. <p>
  6050. </p>
  6051. <table>
  6052. <thead>
  6053. <tr>
  6054. <th>Field</th>
  6055. <th>Description</th>
  6056. </tr>
  6057. </thead>
  6058. <tbody>
  6059. <tr>
  6060. <td>
  6061. <code>tenancy</code></br>
  6062. <em>
  6063. string
  6064. </em>
  6065. </td>
  6066. <td>
  6067. <p>Tenancy is the tenancy OCID where user is located.</p>
  6068. </td>
  6069. </tr>
  6070. <tr>
  6071. <td>
  6072. <code>user</code></br>
  6073. <em>
  6074. string
  6075. </em>
  6076. </td>
  6077. <td>
  6078. <p>User is an access OCID specific to the account.</p>
  6079. </td>
  6080. </tr>
  6081. <tr>
  6082. <td>
  6083. <code>secretRef</code></br>
  6084. <em>
  6085. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  6086. OracleSecretRef
  6087. </a>
  6088. </em>
  6089. </td>
  6090. <td>
  6091. <p>SecretRef to pass through sensitive information.</p>
  6092. </td>
  6093. </tr>
  6094. </tbody>
  6095. </table>
  6096. <h3 id="external-secrets.io/v1beta1.OraclePrincipalType">OraclePrincipalType
  6097. (<code>string</code> alias)</p></h3>
  6098. <p>
  6099. (<em>Appears on:</em>
  6100. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  6101. </p>
  6102. <p>
  6103. </p>
  6104. <table>
  6105. <thead>
  6106. <tr>
  6107. <th>Value</th>
  6108. <th>Description</th>
  6109. </tr>
  6110. </thead>
  6111. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  6112. <td><p>InstancePrincipal represents a instance principal.</p>
  6113. </td>
  6114. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  6115. <td><p>UserPrincipal represents a user principal.</p>
  6116. </td>
  6117. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  6118. <td><p>WorkloadPrincipal represents a workload principal.</p>
  6119. </td>
  6120. </tr></tbody>
  6121. </table>
  6122. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  6123. </h3>
  6124. <p>
  6125. (<em>Appears on:</em>
  6126. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6127. </p>
  6128. <p>
  6129. <p>Configures an store to sync secrets using a Oracle Vault
  6130. backend.</p>
  6131. </p>
  6132. <table>
  6133. <thead>
  6134. <tr>
  6135. <th>Field</th>
  6136. <th>Description</th>
  6137. </tr>
  6138. </thead>
  6139. <tbody>
  6140. <tr>
  6141. <td>
  6142. <code>region</code></br>
  6143. <em>
  6144. string
  6145. </em>
  6146. </td>
  6147. <td>
  6148. <p>Region is the region where vault is located.</p>
  6149. </td>
  6150. </tr>
  6151. <tr>
  6152. <td>
  6153. <code>vault</code></br>
  6154. <em>
  6155. string
  6156. </em>
  6157. </td>
  6158. <td>
  6159. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  6160. </td>
  6161. </tr>
  6162. <tr>
  6163. <td>
  6164. <code>compartment</code></br>
  6165. <em>
  6166. string
  6167. </em>
  6168. </td>
  6169. <td>
  6170. <em>(Optional)</em>
  6171. <p>Compartment is the vault compartment OCID.
  6172. Required for PushSecret</p>
  6173. </td>
  6174. </tr>
  6175. <tr>
  6176. <td>
  6177. <code>encryptionKey</code></br>
  6178. <em>
  6179. string
  6180. </em>
  6181. </td>
  6182. <td>
  6183. <em>(Optional)</em>
  6184. <p>EncryptionKey is the OCID of the encryption key within the vault.
  6185. Required for PushSecret</p>
  6186. </td>
  6187. </tr>
  6188. <tr>
  6189. <td>
  6190. <code>principalType</code></br>
  6191. <em>
  6192. <a href="#external-secrets.io/v1beta1.OraclePrincipalType">
  6193. OraclePrincipalType
  6194. </a>
  6195. </em>
  6196. </td>
  6197. <td>
  6198. <em>(Optional)</em>
  6199. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  6200. determine the principal type. This optional field must be specified if using
  6201. workload identity.</p>
  6202. </td>
  6203. </tr>
  6204. <tr>
  6205. <td>
  6206. <code>auth</code></br>
  6207. <em>
  6208. <a href="#external-secrets.io/v1beta1.OracleAuth">
  6209. OracleAuth
  6210. </a>
  6211. </em>
  6212. </td>
  6213. <td>
  6214. <em>(Optional)</em>
  6215. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  6216. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  6217. </td>
  6218. </tr>
  6219. <tr>
  6220. <td>
  6221. <code>serviceAccountRef</code></br>
  6222. <em>
  6223. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6224. External Secrets meta/v1.ServiceAccountSelector
  6225. </a>
  6226. </em>
  6227. </td>
  6228. <td>
  6229. <em>(Optional)</em>
  6230. <p>ServiceAccountRef specified the service account
  6231. that should be used when authenticating with WorkloadIdentity.</p>
  6232. </td>
  6233. </tr>
  6234. </tbody>
  6235. </table>
  6236. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  6237. </h3>
  6238. <p>
  6239. (<em>Appears on:</em>
  6240. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  6241. </p>
  6242. <p>
  6243. </p>
  6244. <table>
  6245. <thead>
  6246. <tr>
  6247. <th>Field</th>
  6248. <th>Description</th>
  6249. </tr>
  6250. </thead>
  6251. <tbody>
  6252. <tr>
  6253. <td>
  6254. <code>privatekey</code></br>
  6255. <em>
  6256. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6257. External Secrets meta/v1.SecretKeySelector
  6258. </a>
  6259. </em>
  6260. </td>
  6261. <td>
  6262. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  6263. </td>
  6264. </tr>
  6265. <tr>
  6266. <td>
  6267. <code>fingerprint</code></br>
  6268. <em>
  6269. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6270. External Secrets meta/v1.SecretKeySelector
  6271. </a>
  6272. </em>
  6273. </td>
  6274. <td>
  6275. <p>Fingerprint is the fingerprint of the API private key.</p>
  6276. </td>
  6277. </tr>
  6278. </tbody>
  6279. </table>
  6280. <h3 id="external-secrets.io/v1beta1.PassboltAuth">PassboltAuth
  6281. </h3>
  6282. <p>
  6283. (<em>Appears on:</em>
  6284. <a href="#external-secrets.io/v1beta1.PassboltProvider">PassboltProvider</a>)
  6285. </p>
  6286. <p>
  6287. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  6288. </p>
  6289. <table>
  6290. <thead>
  6291. <tr>
  6292. <th>Field</th>
  6293. <th>Description</th>
  6294. </tr>
  6295. </thead>
  6296. <tbody>
  6297. <tr>
  6298. <td>
  6299. <code>passwordSecretRef</code></br>
  6300. <em>
  6301. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6302. External Secrets meta/v1.SecretKeySelector
  6303. </a>
  6304. </em>
  6305. </td>
  6306. <td>
  6307. </td>
  6308. </tr>
  6309. <tr>
  6310. <td>
  6311. <code>privateKeySecretRef</code></br>
  6312. <em>
  6313. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6314. External Secrets meta/v1.SecretKeySelector
  6315. </a>
  6316. </em>
  6317. </td>
  6318. <td>
  6319. </td>
  6320. </tr>
  6321. </tbody>
  6322. </table>
  6323. <h3 id="external-secrets.io/v1beta1.PassboltProvider">PassboltProvider
  6324. </h3>
  6325. <p>
  6326. (<em>Appears on:</em>
  6327. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6328. </p>
  6329. <p>
  6330. </p>
  6331. <table>
  6332. <thead>
  6333. <tr>
  6334. <th>Field</th>
  6335. <th>Description</th>
  6336. </tr>
  6337. </thead>
  6338. <tbody>
  6339. <tr>
  6340. <td>
  6341. <code>auth</code></br>
  6342. <em>
  6343. <a href="#external-secrets.io/v1beta1.PassboltAuth">
  6344. PassboltAuth
  6345. </a>
  6346. </em>
  6347. </td>
  6348. <td>
  6349. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  6350. </td>
  6351. </tr>
  6352. <tr>
  6353. <td>
  6354. <code>host</code></br>
  6355. <em>
  6356. string
  6357. </em>
  6358. </td>
  6359. <td>
  6360. <p>Host defines the Passbolt Server to connect to</p>
  6361. </td>
  6362. </tr>
  6363. </tbody>
  6364. </table>
  6365. <h3 id="external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth
  6366. </h3>
  6367. <p>
  6368. (<em>Appears on:</em>
  6369. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider</a>)
  6370. </p>
  6371. <p>
  6372. </p>
  6373. <table>
  6374. <thead>
  6375. <tr>
  6376. <th>Field</th>
  6377. <th>Description</th>
  6378. </tr>
  6379. </thead>
  6380. <tbody>
  6381. <tr>
  6382. <td>
  6383. <code>secretRef</code></br>
  6384. <em>
  6385. <a href="#external-secrets.io/v1beta1.PasswordDepotSecretRef">
  6386. PasswordDepotSecretRef
  6387. </a>
  6388. </em>
  6389. </td>
  6390. <td>
  6391. </td>
  6392. </tr>
  6393. </tbody>
  6394. </table>
  6395. <h3 id="external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider
  6396. </h3>
  6397. <p>
  6398. (<em>Appears on:</em>
  6399. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6400. </p>
  6401. <p>
  6402. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  6403. </p>
  6404. <table>
  6405. <thead>
  6406. <tr>
  6407. <th>Field</th>
  6408. <th>Description</th>
  6409. </tr>
  6410. </thead>
  6411. <tbody>
  6412. <tr>
  6413. <td>
  6414. <code>host</code></br>
  6415. <em>
  6416. string
  6417. </em>
  6418. </td>
  6419. <td>
  6420. <p>URL configures the Password Depot instance URL.</p>
  6421. </td>
  6422. </tr>
  6423. <tr>
  6424. <td>
  6425. <code>database</code></br>
  6426. <em>
  6427. string
  6428. </em>
  6429. </td>
  6430. <td>
  6431. <p>Database to use as source</p>
  6432. </td>
  6433. </tr>
  6434. <tr>
  6435. <td>
  6436. <code>auth</code></br>
  6437. <em>
  6438. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">
  6439. PasswordDepotAuth
  6440. </a>
  6441. </em>
  6442. </td>
  6443. <td>
  6444. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  6445. </td>
  6446. </tr>
  6447. </tbody>
  6448. </table>
  6449. <h3 id="external-secrets.io/v1beta1.PasswordDepotSecretRef">PasswordDepotSecretRef
  6450. </h3>
  6451. <p>
  6452. (<em>Appears on:</em>
  6453. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth</a>)
  6454. </p>
  6455. <p>
  6456. </p>
  6457. <table>
  6458. <thead>
  6459. <tr>
  6460. <th>Field</th>
  6461. <th>Description</th>
  6462. </tr>
  6463. </thead>
  6464. <tbody>
  6465. <tr>
  6466. <td>
  6467. <code>credentials</code></br>
  6468. <em>
  6469. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6470. External Secrets meta/v1.SecretKeySelector
  6471. </a>
  6472. </em>
  6473. </td>
  6474. <td>
  6475. <em>(Optional)</em>
  6476. <p>Username / Password is used for authentication.</p>
  6477. </td>
  6478. </tr>
  6479. </tbody>
  6480. </table>
  6481. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  6482. </h3>
  6483. <p>
  6484. <p>Provider is a common interface for interacting with secret backends.</p>
  6485. </p>
  6486. <h3 id="external-secrets.io/v1beta1.PulumiProvider">PulumiProvider
  6487. </h3>
  6488. <p>
  6489. (<em>Appears on:</em>
  6490. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6491. </p>
  6492. <p>
  6493. </p>
  6494. <table>
  6495. <thead>
  6496. <tr>
  6497. <th>Field</th>
  6498. <th>Description</th>
  6499. </tr>
  6500. </thead>
  6501. <tbody>
  6502. <tr>
  6503. <td>
  6504. <code>apiUrl</code></br>
  6505. <em>
  6506. string
  6507. </em>
  6508. </td>
  6509. <td>
  6510. <p>APIURL is the URL of the Pulumi API.</p>
  6511. </td>
  6512. </tr>
  6513. <tr>
  6514. <td>
  6515. <code>accessToken</code></br>
  6516. <em>
  6517. <a href="#external-secrets.io/v1beta1.PulumiProviderSecretRef">
  6518. PulumiProviderSecretRef
  6519. </a>
  6520. </em>
  6521. </td>
  6522. <td>
  6523. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  6524. </td>
  6525. </tr>
  6526. <tr>
  6527. <td>
  6528. <code>organization</code></br>
  6529. <em>
  6530. string
  6531. </em>
  6532. </td>
  6533. <td>
  6534. <p>Organization are a space to collaborate on shared projects and stacks.
  6535. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  6536. </td>
  6537. </tr>
  6538. <tr>
  6539. <td>
  6540. <code>environment</code></br>
  6541. <em>
  6542. string
  6543. </em>
  6544. </td>
  6545. <td>
  6546. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  6547. dynamically retrieved values from supported providers including all major clouds,
  6548. and other Pulumi ESC environments.
  6549. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  6550. </td>
  6551. </tr>
  6552. </tbody>
  6553. </table>
  6554. <h3 id="external-secrets.io/v1beta1.PulumiProviderSecretRef">PulumiProviderSecretRef
  6555. </h3>
  6556. <p>
  6557. (<em>Appears on:</em>
  6558. <a href="#external-secrets.io/v1beta1.PulumiProvider">PulumiProvider</a>)
  6559. </p>
  6560. <p>
  6561. </p>
  6562. <table>
  6563. <thead>
  6564. <tr>
  6565. <th>Field</th>
  6566. <th>Description</th>
  6567. </tr>
  6568. </thead>
  6569. <tbody>
  6570. <tr>
  6571. <td>
  6572. <code>secretRef</code></br>
  6573. <em>
  6574. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6575. External Secrets meta/v1.SecretKeySelector
  6576. </a>
  6577. </em>
  6578. </td>
  6579. <td>
  6580. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  6581. </td>
  6582. </tr>
  6583. </tbody>
  6584. </table>
  6585. <h3 id="external-secrets.io/v1beta1.PushSecretData">PushSecretData
  6586. </h3>
  6587. <p>
  6588. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1beta1.</p>
  6589. </p>
  6590. <h3 id="external-secrets.io/v1beta1.PushSecretRemoteRef">PushSecretRemoteRef
  6591. </h3>
  6592. <p>
  6593. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1beta1.</p>
  6594. </p>
  6595. <h3 id="external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider
  6596. </h3>
  6597. <p>
  6598. (<em>Appears on:</em>
  6599. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6600. </p>
  6601. <p>
  6602. </p>
  6603. <table>
  6604. <thead>
  6605. <tr>
  6606. <th>Field</th>
  6607. <th>Description</th>
  6608. </tr>
  6609. </thead>
  6610. <tbody>
  6611. <tr>
  6612. <td>
  6613. <code>apiUrl</code></br>
  6614. <em>
  6615. string
  6616. </em>
  6617. </td>
  6618. <td>
  6619. <em>(Optional)</em>
  6620. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  6621. </td>
  6622. </tr>
  6623. <tr>
  6624. <td>
  6625. <code>region</code></br>
  6626. <em>
  6627. string
  6628. </em>
  6629. </td>
  6630. <td>
  6631. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  6632. </td>
  6633. </tr>
  6634. <tr>
  6635. <td>
  6636. <code>projectId</code></br>
  6637. <em>
  6638. string
  6639. </em>
  6640. </td>
  6641. <td>
  6642. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  6643. </td>
  6644. </tr>
  6645. <tr>
  6646. <td>
  6647. <code>accessKey</code></br>
  6648. <em>
  6649. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6650. ScalewayProviderSecretRef
  6651. </a>
  6652. </em>
  6653. </td>
  6654. <td>
  6655. <p>AccessKey is the non-secret part of the api key.</p>
  6656. </td>
  6657. </tr>
  6658. <tr>
  6659. <td>
  6660. <code>secretKey</code></br>
  6661. <em>
  6662. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6663. ScalewayProviderSecretRef
  6664. </a>
  6665. </em>
  6666. </td>
  6667. <td>
  6668. <p>SecretKey is the non-secret part of the api key.</p>
  6669. </td>
  6670. </tr>
  6671. </tbody>
  6672. </table>
  6673. <h3 id="external-secrets.io/v1beta1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  6674. </h3>
  6675. <p>
  6676. (<em>Appears on:</em>
  6677. <a href="#external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider</a>)
  6678. </p>
  6679. <p>
  6680. </p>
  6681. <table>
  6682. <thead>
  6683. <tr>
  6684. <th>Field</th>
  6685. <th>Description</th>
  6686. </tr>
  6687. </thead>
  6688. <tbody>
  6689. <tr>
  6690. <td>
  6691. <code>value</code></br>
  6692. <em>
  6693. string
  6694. </em>
  6695. </td>
  6696. <td>
  6697. <em>(Optional)</em>
  6698. <p>Value can be specified directly to set a value without using a secret.</p>
  6699. </td>
  6700. </tr>
  6701. <tr>
  6702. <td>
  6703. <code>secretRef</code></br>
  6704. <em>
  6705. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6706. External Secrets meta/v1.SecretKeySelector
  6707. </a>
  6708. </em>
  6709. </td>
  6710. <td>
  6711. <em>(Optional)</em>
  6712. <p>SecretRef references a key in a secret that will be used as value.</p>
  6713. </td>
  6714. </tr>
  6715. </tbody>
  6716. </table>
  6717. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  6718. </h3>
  6719. <p>
  6720. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  6721. </p>
  6722. <table>
  6723. <thead>
  6724. <tr>
  6725. <th>Field</th>
  6726. <th>Description</th>
  6727. </tr>
  6728. </thead>
  6729. <tbody>
  6730. <tr>
  6731. <td>
  6732. <code>metadata</code></br>
  6733. <em>
  6734. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  6735. Kubernetes meta/v1.ObjectMeta
  6736. </a>
  6737. </em>
  6738. </td>
  6739. <td>
  6740. Refer to the Kubernetes API documentation for the fields of the
  6741. <code>metadata</code> field.
  6742. </td>
  6743. </tr>
  6744. <tr>
  6745. <td>
  6746. <code>spec</code></br>
  6747. <em>
  6748. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  6749. SecretStoreSpec
  6750. </a>
  6751. </em>
  6752. </td>
  6753. <td>
  6754. <br/>
  6755. <br/>
  6756. <table>
  6757. <tr>
  6758. <td>
  6759. <code>controller</code></br>
  6760. <em>
  6761. string
  6762. </em>
  6763. </td>
  6764. <td>
  6765. <em>(Optional)</em>
  6766. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6767. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6768. </td>
  6769. </tr>
  6770. <tr>
  6771. <td>
  6772. <code>provider</code></br>
  6773. <em>
  6774. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6775. SecretStoreProvider
  6776. </a>
  6777. </em>
  6778. </td>
  6779. <td>
  6780. <p>Used to configure the provider. Only one provider may be set</p>
  6781. </td>
  6782. </tr>
  6783. <tr>
  6784. <td>
  6785. <code>retrySettings</code></br>
  6786. <em>
  6787. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6788. SecretStoreRetrySettings
  6789. </a>
  6790. </em>
  6791. </td>
  6792. <td>
  6793. <em>(Optional)</em>
  6794. <p>Used to configure http retries if failed</p>
  6795. </td>
  6796. </tr>
  6797. <tr>
  6798. <td>
  6799. <code>refreshInterval</code></br>
  6800. <em>
  6801. int
  6802. </em>
  6803. </td>
  6804. <td>
  6805. <em>(Optional)</em>
  6806. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6807. </td>
  6808. </tr>
  6809. <tr>
  6810. <td>
  6811. <code>conditions</code></br>
  6812. <em>
  6813. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6814. []ClusterSecretStoreCondition
  6815. </a>
  6816. </em>
  6817. </td>
  6818. <td>
  6819. <em>(Optional)</em>
  6820. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6821. </td>
  6822. </tr>
  6823. </table>
  6824. </td>
  6825. </tr>
  6826. <tr>
  6827. <td>
  6828. <code>status</code></br>
  6829. <em>
  6830. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  6831. SecretStoreStatus
  6832. </a>
  6833. </em>
  6834. </td>
  6835. <td>
  6836. </td>
  6837. </tr>
  6838. </tbody>
  6839. </table>
  6840. <h3 id="external-secrets.io/v1beta1.SecretStoreCapabilities">SecretStoreCapabilities
  6841. (<code>string</code> alias)</p></h3>
  6842. <p>
  6843. (<em>Appears on:</em>
  6844. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6845. </p>
  6846. <p>
  6847. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  6848. </p>
  6849. <table>
  6850. <thead>
  6851. <tr>
  6852. <th>Value</th>
  6853. <th>Description</th>
  6854. </tr>
  6855. </thead>
  6856. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  6857. <td></td>
  6858. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  6859. <td></td>
  6860. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  6861. <td></td>
  6862. </tr></tbody>
  6863. </table>
  6864. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  6865. (<code>string</code> alias)</p></h3>
  6866. <p>
  6867. (<em>Appears on:</em>
  6868. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  6869. </p>
  6870. <p>
  6871. </p>
  6872. <table>
  6873. <thead>
  6874. <tr>
  6875. <th>Value</th>
  6876. <th>Description</th>
  6877. </tr>
  6878. </thead>
  6879. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  6880. <td></td>
  6881. </tr></tbody>
  6882. </table>
  6883. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  6884. </h3>
  6885. <p>
  6886. (<em>Appears on:</em>
  6887. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6888. </p>
  6889. <p>
  6890. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  6891. </p>
  6892. <table>
  6893. <thead>
  6894. <tr>
  6895. <th>Field</th>
  6896. <th>Description</th>
  6897. </tr>
  6898. </thead>
  6899. <tbody>
  6900. <tr>
  6901. <td>
  6902. <code>aws</code></br>
  6903. <em>
  6904. <a href="#external-secrets.io/v1beta1.AWSProvider">
  6905. AWSProvider
  6906. </a>
  6907. </em>
  6908. </td>
  6909. <td>
  6910. <em>(Optional)</em>
  6911. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  6912. </td>
  6913. </tr>
  6914. <tr>
  6915. <td>
  6916. <code>azurekv</code></br>
  6917. <em>
  6918. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  6919. AzureKVProvider
  6920. </a>
  6921. </em>
  6922. </td>
  6923. <td>
  6924. <em>(Optional)</em>
  6925. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  6926. </td>
  6927. </tr>
  6928. <tr>
  6929. <td>
  6930. <code>akeyless</code></br>
  6931. <em>
  6932. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  6933. AkeylessProvider
  6934. </a>
  6935. </em>
  6936. </td>
  6937. <td>
  6938. <em>(Optional)</em>
  6939. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  6940. </td>
  6941. </tr>
  6942. <tr>
  6943. <td>
  6944. <code>vault</code></br>
  6945. <em>
  6946. <a href="#external-secrets.io/v1beta1.VaultProvider">
  6947. VaultProvider
  6948. </a>
  6949. </em>
  6950. </td>
  6951. <td>
  6952. <em>(Optional)</em>
  6953. <p>Vault configures this store to sync secrets using Hashi provider</p>
  6954. </td>
  6955. </tr>
  6956. <tr>
  6957. <td>
  6958. <code>gcpsm</code></br>
  6959. <em>
  6960. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  6961. GCPSMProvider
  6962. </a>
  6963. </em>
  6964. </td>
  6965. <td>
  6966. <em>(Optional)</em>
  6967. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  6968. </td>
  6969. </tr>
  6970. <tr>
  6971. <td>
  6972. <code>oracle</code></br>
  6973. <em>
  6974. <a href="#external-secrets.io/v1beta1.OracleProvider">
  6975. OracleProvider
  6976. </a>
  6977. </em>
  6978. </td>
  6979. <td>
  6980. <em>(Optional)</em>
  6981. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  6982. </td>
  6983. </tr>
  6984. <tr>
  6985. <td>
  6986. <code>ibm</code></br>
  6987. <em>
  6988. <a href="#external-secrets.io/v1beta1.IBMProvider">
  6989. IBMProvider
  6990. </a>
  6991. </em>
  6992. </td>
  6993. <td>
  6994. <em>(Optional)</em>
  6995. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  6996. </td>
  6997. </tr>
  6998. <tr>
  6999. <td>
  7000. <code>yandexcertificatemanager</code></br>
  7001. <em>
  7002. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  7003. YandexCertificateManagerProvider
  7004. </a>
  7005. </em>
  7006. </td>
  7007. <td>
  7008. <em>(Optional)</em>
  7009. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  7010. </td>
  7011. </tr>
  7012. <tr>
  7013. <td>
  7014. <code>yandexlockbox</code></br>
  7015. <em>
  7016. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  7017. YandexLockboxProvider
  7018. </a>
  7019. </em>
  7020. </td>
  7021. <td>
  7022. <em>(Optional)</em>
  7023. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  7024. </td>
  7025. </tr>
  7026. <tr>
  7027. <td>
  7028. <code>gitlab</code></br>
  7029. <em>
  7030. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  7031. GitlabProvider
  7032. </a>
  7033. </em>
  7034. </td>
  7035. <td>
  7036. <em>(Optional)</em>
  7037. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  7038. </td>
  7039. </tr>
  7040. <tr>
  7041. <td>
  7042. <code>alibaba</code></br>
  7043. <em>
  7044. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  7045. AlibabaProvider
  7046. </a>
  7047. </em>
  7048. </td>
  7049. <td>
  7050. <em>(Optional)</em>
  7051. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  7052. </td>
  7053. </tr>
  7054. <tr>
  7055. <td>
  7056. <code>onepassword</code></br>
  7057. <em>
  7058. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  7059. OnePasswordProvider
  7060. </a>
  7061. </em>
  7062. </td>
  7063. <td>
  7064. <em>(Optional)</em>
  7065. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  7066. </td>
  7067. </tr>
  7068. <tr>
  7069. <td>
  7070. <code>webhook</code></br>
  7071. <em>
  7072. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  7073. WebhookProvider
  7074. </a>
  7075. </em>
  7076. </td>
  7077. <td>
  7078. <em>(Optional)</em>
  7079. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  7080. </td>
  7081. </tr>
  7082. <tr>
  7083. <td>
  7084. <code>kubernetes</code></br>
  7085. <em>
  7086. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  7087. KubernetesProvider
  7088. </a>
  7089. </em>
  7090. </td>
  7091. <td>
  7092. <em>(Optional)</em>
  7093. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  7094. </td>
  7095. </tr>
  7096. <tr>
  7097. <td>
  7098. <code>fake</code></br>
  7099. <em>
  7100. <a href="#external-secrets.io/v1beta1.FakeProvider">
  7101. FakeProvider
  7102. </a>
  7103. </em>
  7104. </td>
  7105. <td>
  7106. <em>(Optional)</em>
  7107. <p>Fake configures a store with static key/value pairs</p>
  7108. </td>
  7109. </tr>
  7110. <tr>
  7111. <td>
  7112. <code>senhasegura</code></br>
  7113. <em>
  7114. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  7115. SenhaseguraProvider
  7116. </a>
  7117. </em>
  7118. </td>
  7119. <td>
  7120. <em>(Optional)</em>
  7121. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  7122. </td>
  7123. </tr>
  7124. <tr>
  7125. <td>
  7126. <code>scaleway</code></br>
  7127. <em>
  7128. <a href="#external-secrets.io/v1beta1.ScalewayProvider">
  7129. ScalewayProvider
  7130. </a>
  7131. </em>
  7132. </td>
  7133. <td>
  7134. <em>(Optional)</em>
  7135. <p>Scaleway</p>
  7136. </td>
  7137. </tr>
  7138. <tr>
  7139. <td>
  7140. <code>doppler</code></br>
  7141. <em>
  7142. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  7143. DopplerProvider
  7144. </a>
  7145. </em>
  7146. </td>
  7147. <td>
  7148. <em>(Optional)</em>
  7149. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  7150. </td>
  7151. </tr>
  7152. <tr>
  7153. <td>
  7154. <code>onboardbase</code></br>
  7155. <em>
  7156. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">
  7157. OnboardbaseProvider
  7158. </a>
  7159. </em>
  7160. </td>
  7161. <td>
  7162. <em>(Optional)</em>
  7163. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  7164. </td>
  7165. </tr>
  7166. <tr>
  7167. <td>
  7168. <code>keepersecurity</code></br>
  7169. <em>
  7170. <a href="#external-secrets.io/v1beta1.KeeperSecurityProvider">
  7171. KeeperSecurityProvider
  7172. </a>
  7173. </em>
  7174. </td>
  7175. <td>
  7176. <em>(Optional)</em>
  7177. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  7178. </td>
  7179. </tr>
  7180. <tr>
  7181. <td>
  7182. <code>conjur</code></br>
  7183. <em>
  7184. <a href="#external-secrets.io/v1beta1.ConjurProvider">
  7185. ConjurProvider
  7186. </a>
  7187. </em>
  7188. </td>
  7189. <td>
  7190. <em>(Optional)</em>
  7191. <p>Conjur configures this store to sync secrets using conjur provider</p>
  7192. </td>
  7193. </tr>
  7194. <tr>
  7195. <td>
  7196. <code>delinea</code></br>
  7197. <em>
  7198. <a href="#external-secrets.io/v1beta1.DelineaProvider">
  7199. DelineaProvider
  7200. </a>
  7201. </em>
  7202. </td>
  7203. <td>
  7204. <em>(Optional)</em>
  7205. <p>Delinea DevOps Secrets Vault
  7206. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  7207. </td>
  7208. </tr>
  7209. <tr>
  7210. <td>
  7211. <code>chef</code></br>
  7212. <em>
  7213. <a href="#external-secrets.io/v1beta1.ChefProvider">
  7214. ChefProvider
  7215. </a>
  7216. </em>
  7217. </td>
  7218. <td>
  7219. <em>(Optional)</em>
  7220. <p>Chef configures this store to sync secrets with chef server</p>
  7221. </td>
  7222. </tr>
  7223. <tr>
  7224. <td>
  7225. <code>pulumi</code></br>
  7226. <em>
  7227. <a href="#external-secrets.io/v1beta1.PulumiProvider">
  7228. PulumiProvider
  7229. </a>
  7230. </em>
  7231. </td>
  7232. <td>
  7233. <em>(Optional)</em>
  7234. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  7235. </td>
  7236. </tr>
  7237. <tr>
  7238. <td>
  7239. <code>fortanix</code></br>
  7240. <em>
  7241. <a href="#external-secrets.io/v1beta1.FortanixProvider">
  7242. FortanixProvider
  7243. </a>
  7244. </em>
  7245. </td>
  7246. <td>
  7247. <em>(Optional)</em>
  7248. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  7249. </td>
  7250. </tr>
  7251. <tr>
  7252. <td>
  7253. <code>passworddepot</code></br>
  7254. <em>
  7255. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">
  7256. PasswordDepotProvider
  7257. </a>
  7258. </em>
  7259. </td>
  7260. <td>
  7261. <em>(Optional)</em>
  7262. </td>
  7263. </tr>
  7264. <tr>
  7265. <td>
  7266. <code>passbolt</code></br>
  7267. <em>
  7268. <a href="#external-secrets.io/v1beta1.PassboltProvider">
  7269. PassboltProvider
  7270. </a>
  7271. </em>
  7272. </td>
  7273. <td>
  7274. <em>(Optional)</em>
  7275. </td>
  7276. </tr>
  7277. </tbody>
  7278. </table>
  7279. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  7280. </h3>
  7281. <p>
  7282. (<em>Appears on:</em>
  7283. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  7284. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  7285. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  7286. </p>
  7287. <p>
  7288. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  7289. </p>
  7290. <table>
  7291. <thead>
  7292. <tr>
  7293. <th>Field</th>
  7294. <th>Description</th>
  7295. </tr>
  7296. </thead>
  7297. <tbody>
  7298. <tr>
  7299. <td>
  7300. <code>name</code></br>
  7301. <em>
  7302. string
  7303. </em>
  7304. </td>
  7305. <td>
  7306. <p>Name of the SecretStore resource</p>
  7307. </td>
  7308. </tr>
  7309. <tr>
  7310. <td>
  7311. <code>kind</code></br>
  7312. <em>
  7313. string
  7314. </em>
  7315. </td>
  7316. <td>
  7317. <em>(Optional)</em>
  7318. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  7319. Defaults to <code>SecretStore</code></p>
  7320. </td>
  7321. </tr>
  7322. </tbody>
  7323. </table>
  7324. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  7325. </h3>
  7326. <p>
  7327. (<em>Appears on:</em>
  7328. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  7329. </p>
  7330. <p>
  7331. </p>
  7332. <table>
  7333. <thead>
  7334. <tr>
  7335. <th>Field</th>
  7336. <th>Description</th>
  7337. </tr>
  7338. </thead>
  7339. <tbody>
  7340. <tr>
  7341. <td>
  7342. <code>maxRetries</code></br>
  7343. <em>
  7344. int32
  7345. </em>
  7346. </td>
  7347. <td>
  7348. </td>
  7349. </tr>
  7350. <tr>
  7351. <td>
  7352. <code>retryInterval</code></br>
  7353. <em>
  7354. string
  7355. </em>
  7356. </td>
  7357. <td>
  7358. </td>
  7359. </tr>
  7360. </tbody>
  7361. </table>
  7362. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  7363. </h3>
  7364. <p>
  7365. (<em>Appears on:</em>
  7366. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7367. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7368. </p>
  7369. <p>
  7370. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  7371. </p>
  7372. <table>
  7373. <thead>
  7374. <tr>
  7375. <th>Field</th>
  7376. <th>Description</th>
  7377. </tr>
  7378. </thead>
  7379. <tbody>
  7380. <tr>
  7381. <td>
  7382. <code>controller</code></br>
  7383. <em>
  7384. string
  7385. </em>
  7386. </td>
  7387. <td>
  7388. <em>(Optional)</em>
  7389. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  7390. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  7391. </td>
  7392. </tr>
  7393. <tr>
  7394. <td>
  7395. <code>provider</code></br>
  7396. <em>
  7397. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  7398. SecretStoreProvider
  7399. </a>
  7400. </em>
  7401. </td>
  7402. <td>
  7403. <p>Used to configure the provider. Only one provider may be set</p>
  7404. </td>
  7405. </tr>
  7406. <tr>
  7407. <td>
  7408. <code>retrySettings</code></br>
  7409. <em>
  7410. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  7411. SecretStoreRetrySettings
  7412. </a>
  7413. </em>
  7414. </td>
  7415. <td>
  7416. <em>(Optional)</em>
  7417. <p>Used to configure http retries if failed</p>
  7418. </td>
  7419. </tr>
  7420. <tr>
  7421. <td>
  7422. <code>refreshInterval</code></br>
  7423. <em>
  7424. int
  7425. </em>
  7426. </td>
  7427. <td>
  7428. <em>(Optional)</em>
  7429. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  7430. </td>
  7431. </tr>
  7432. <tr>
  7433. <td>
  7434. <code>conditions</code></br>
  7435. <em>
  7436. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  7437. []ClusterSecretStoreCondition
  7438. </a>
  7439. </em>
  7440. </td>
  7441. <td>
  7442. <em>(Optional)</em>
  7443. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  7444. </td>
  7445. </tr>
  7446. </tbody>
  7447. </table>
  7448. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  7449. </h3>
  7450. <p>
  7451. (<em>Appears on:</em>
  7452. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7453. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7454. </p>
  7455. <p>
  7456. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  7457. </p>
  7458. <table>
  7459. <thead>
  7460. <tr>
  7461. <th>Field</th>
  7462. <th>Description</th>
  7463. </tr>
  7464. </thead>
  7465. <tbody>
  7466. <tr>
  7467. <td>
  7468. <code>conditions</code></br>
  7469. <em>
  7470. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  7471. []SecretStoreStatusCondition
  7472. </a>
  7473. </em>
  7474. </td>
  7475. <td>
  7476. <em>(Optional)</em>
  7477. </td>
  7478. </tr>
  7479. <tr>
  7480. <td>
  7481. <code>capabilities</code></br>
  7482. <em>
  7483. <a href="#external-secrets.io/v1beta1.SecretStoreCapabilities">
  7484. SecretStoreCapabilities
  7485. </a>
  7486. </em>
  7487. </td>
  7488. <td>
  7489. <em>(Optional)</em>
  7490. </td>
  7491. </tr>
  7492. </tbody>
  7493. </table>
  7494. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  7495. </h3>
  7496. <p>
  7497. (<em>Appears on:</em>
  7498. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  7499. </p>
  7500. <p>
  7501. </p>
  7502. <table>
  7503. <thead>
  7504. <tr>
  7505. <th>Field</th>
  7506. <th>Description</th>
  7507. </tr>
  7508. </thead>
  7509. <tbody>
  7510. <tr>
  7511. <td>
  7512. <code>type</code></br>
  7513. <em>
  7514. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  7515. SecretStoreConditionType
  7516. </a>
  7517. </em>
  7518. </td>
  7519. <td>
  7520. </td>
  7521. </tr>
  7522. <tr>
  7523. <td>
  7524. <code>status</code></br>
  7525. <em>
  7526. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  7527. Kubernetes core/v1.ConditionStatus
  7528. </a>
  7529. </em>
  7530. </td>
  7531. <td>
  7532. </td>
  7533. </tr>
  7534. <tr>
  7535. <td>
  7536. <code>reason</code></br>
  7537. <em>
  7538. string
  7539. </em>
  7540. </td>
  7541. <td>
  7542. <em>(Optional)</em>
  7543. </td>
  7544. </tr>
  7545. <tr>
  7546. <td>
  7547. <code>message</code></br>
  7548. <em>
  7549. string
  7550. </em>
  7551. </td>
  7552. <td>
  7553. <em>(Optional)</em>
  7554. </td>
  7555. </tr>
  7556. <tr>
  7557. <td>
  7558. <code>lastTransitionTime</code></br>
  7559. <em>
  7560. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  7561. Kubernetes meta/v1.Time
  7562. </a>
  7563. </em>
  7564. </td>
  7565. <td>
  7566. <em>(Optional)</em>
  7567. </td>
  7568. </tr>
  7569. </tbody>
  7570. </table>
  7571. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  7572. </h3>
  7573. <p>
  7574. <p>SecretsClient provides access to secrets.</p>
  7575. </p>
  7576. <h3 id="external-secrets.io/v1beta1.SecretsManager">SecretsManager
  7577. </h3>
  7578. <p>
  7579. (<em>Appears on:</em>
  7580. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  7581. </p>
  7582. <p>
  7583. <p>SecretsManager defines how the provider behaves when interacting with AWS
  7584. SecretsManager. Some of these settings are only applicable to controlling how
  7585. secrets are deleted, and hence only apply to PushSecret (and only when
  7586. deletionPolicy is set to Delete).</p>
  7587. </p>
  7588. <table>
  7589. <thead>
  7590. <tr>
  7591. <th>Field</th>
  7592. <th>Description</th>
  7593. </tr>
  7594. </thead>
  7595. <tbody>
  7596. <tr>
  7597. <td>
  7598. <code>forceDeleteWithoutRecovery</code></br>
  7599. <em>
  7600. bool
  7601. </em>
  7602. </td>
  7603. <td>
  7604. <em>(Optional)</em>
  7605. <p>Specifies whether to delete the secret without any recovery window. You
  7606. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  7607. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  7608. recovery window.
  7609. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  7610. </td>
  7611. </tr>
  7612. <tr>
  7613. <td>
  7614. <code>recoveryWindowInDays</code></br>
  7615. <em>
  7616. int64
  7617. </em>
  7618. </td>
  7619. <td>
  7620. <em>(Optional)</em>
  7621. <p>The number of days from 7 to 30 that Secrets Manager waits before
  7622. permanently deleting the secret. You can&rsquo;t use both this parameter and
  7623. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  7624. then by default Secrets Manager uses a 30 day recovery window.
  7625. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  7626. </td>
  7627. </tr>
  7628. </tbody>
  7629. </table>
  7630. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  7631. </h3>
  7632. <p>
  7633. (<em>Appears on:</em>
  7634. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7635. </p>
  7636. <p>
  7637. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  7638. </p>
  7639. <table>
  7640. <thead>
  7641. <tr>
  7642. <th>Field</th>
  7643. <th>Description</th>
  7644. </tr>
  7645. </thead>
  7646. <tbody>
  7647. <tr>
  7648. <td>
  7649. <code>clientId</code></br>
  7650. <em>
  7651. string
  7652. </em>
  7653. </td>
  7654. <td>
  7655. </td>
  7656. </tr>
  7657. <tr>
  7658. <td>
  7659. <code>clientSecretSecretRef</code></br>
  7660. <em>
  7661. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7662. External Secrets meta/v1.SecretKeySelector
  7663. </a>
  7664. </em>
  7665. </td>
  7666. <td>
  7667. </td>
  7668. </tr>
  7669. </tbody>
  7670. </table>
  7671. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  7672. (<code>string</code> alias)</p></h3>
  7673. <p>
  7674. (<em>Appears on:</em>
  7675. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7676. </p>
  7677. <p>
  7678. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  7679. </p>
  7680. <table>
  7681. <thead>
  7682. <tr>
  7683. <th>Value</th>
  7684. <th>Description</th>
  7685. </tr>
  7686. </thead>
  7687. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  7688. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  7689. see: https://senhasegura.com/devops
  7690. </code></pre>
  7691. </td>
  7692. </tr></tbody>
  7693. </table>
  7694. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  7695. </h3>
  7696. <p>
  7697. (<em>Appears on:</em>
  7698. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  7699. </p>
  7700. <p>
  7701. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  7702. </p>
  7703. <table>
  7704. <thead>
  7705. <tr>
  7706. <th>Field</th>
  7707. <th>Description</th>
  7708. </tr>
  7709. </thead>
  7710. <tbody>
  7711. <tr>
  7712. <td>
  7713. <code>url</code></br>
  7714. <em>
  7715. string
  7716. </em>
  7717. </td>
  7718. <td>
  7719. <p>URL of senhasegura</p>
  7720. </td>
  7721. </tr>
  7722. <tr>
  7723. <td>
  7724. <code>module</code></br>
  7725. <em>
  7726. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  7727. SenhaseguraModuleType
  7728. </a>
  7729. </em>
  7730. </td>
  7731. <td>
  7732. <p>Module defines which senhasegura module should be used to get secrets</p>
  7733. </td>
  7734. </tr>
  7735. <tr>
  7736. <td>
  7737. <code>auth</code></br>
  7738. <em>
  7739. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  7740. SenhaseguraAuth
  7741. </a>
  7742. </em>
  7743. </td>
  7744. <td>
  7745. <p>Auth defines parameters to authenticate in senhasegura</p>
  7746. </td>
  7747. </tr>
  7748. <tr>
  7749. <td>
  7750. <code>ignoreSslCertificate</code></br>
  7751. <em>
  7752. bool
  7753. </em>
  7754. </td>
  7755. <td>
  7756. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  7757. </td>
  7758. </tr>
  7759. </tbody>
  7760. </table>
  7761. <h3 id="external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  7762. </h3>
  7763. <p>
  7764. (<em>Appears on:</em>
  7765. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  7766. </p>
  7767. <p>
  7768. <p>StoreGeneratorSourceRef allows you to override the source
  7769. from which the secret will be pulled from.
  7770. You can define at maximum one property.</p>
  7771. </p>
  7772. <table>
  7773. <thead>
  7774. <tr>
  7775. <th>Field</th>
  7776. <th>Description</th>
  7777. </tr>
  7778. </thead>
  7779. <tbody>
  7780. <tr>
  7781. <td>
  7782. <code>storeRef</code></br>
  7783. <em>
  7784. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7785. SecretStoreRef
  7786. </a>
  7787. </em>
  7788. </td>
  7789. <td>
  7790. <em>(Optional)</em>
  7791. </td>
  7792. </tr>
  7793. <tr>
  7794. <td>
  7795. <code>generatorRef</code></br>
  7796. <em>
  7797. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7798. GeneratorRef
  7799. </a>
  7800. </em>
  7801. </td>
  7802. <td>
  7803. <em>(Optional)</em>
  7804. <p>GeneratorRef points to a generator custom resource.</p>
  7805. </td>
  7806. </tr>
  7807. </tbody>
  7808. </table>
  7809. <h3 id="external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef
  7810. </h3>
  7811. <p>
  7812. (<em>Appears on:</em>
  7813. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>)
  7814. </p>
  7815. <p>
  7816. <p>StoreSourceRef allows you to override the SecretStore source
  7817. from which the secret will be pulled from.
  7818. You can define at maximum one property.</p>
  7819. </p>
  7820. <table>
  7821. <thead>
  7822. <tr>
  7823. <th>Field</th>
  7824. <th>Description</th>
  7825. </tr>
  7826. </thead>
  7827. <tbody>
  7828. <tr>
  7829. <td>
  7830. <code>storeRef</code></br>
  7831. <em>
  7832. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7833. SecretStoreRef
  7834. </a>
  7835. </em>
  7836. </td>
  7837. <td>
  7838. <em>(Optional)</em>
  7839. </td>
  7840. </tr>
  7841. <tr>
  7842. <td>
  7843. <code>generatorRef</code></br>
  7844. <em>
  7845. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7846. GeneratorRef
  7847. </a>
  7848. </em>
  7849. </td>
  7850. <td>
  7851. <p>GeneratorRef points to a generator custom resource.</p>
  7852. <p>Deprecated: The generatorRef is not implemented in .data[].
  7853. this will be removed with v1.</p>
  7854. </td>
  7855. </tr>
  7856. </tbody>
  7857. </table>
  7858. <h3 id="external-secrets.io/v1beta1.Tag">Tag
  7859. </h3>
  7860. <p>
  7861. </p>
  7862. <table>
  7863. <thead>
  7864. <tr>
  7865. <th>Field</th>
  7866. <th>Description</th>
  7867. </tr>
  7868. </thead>
  7869. <tbody>
  7870. <tr>
  7871. <td>
  7872. <code>key</code></br>
  7873. <em>
  7874. string
  7875. </em>
  7876. </td>
  7877. <td>
  7878. </td>
  7879. </tr>
  7880. <tr>
  7881. <td>
  7882. <code>value</code></br>
  7883. <em>
  7884. string
  7885. </em>
  7886. </td>
  7887. <td>
  7888. </td>
  7889. </tr>
  7890. </tbody>
  7891. </table>
  7892. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  7893. (<code>string</code> alias)</p></h3>
  7894. <p>
  7895. (<em>Appears on:</em>
  7896. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7897. </p>
  7898. <p>
  7899. </p>
  7900. <table>
  7901. <thead>
  7902. <tr>
  7903. <th>Value</th>
  7904. <th>Description</th>
  7905. </tr>
  7906. </thead>
  7907. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  7908. <td></td>
  7909. </tr><tr><td><p>&#34;v2&#34;</p></td>
  7910. <td></td>
  7911. </tr></tbody>
  7912. </table>
  7913. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  7914. </h3>
  7915. <p>
  7916. (<em>Appears on:</em>
  7917. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7918. </p>
  7919. <p>
  7920. </p>
  7921. <table>
  7922. <thead>
  7923. <tr>
  7924. <th>Field</th>
  7925. <th>Description</th>
  7926. </tr>
  7927. </thead>
  7928. <tbody>
  7929. <tr>
  7930. <td>
  7931. <code>configMap</code></br>
  7932. <em>
  7933. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7934. TemplateRef
  7935. </a>
  7936. </em>
  7937. </td>
  7938. <td>
  7939. </td>
  7940. </tr>
  7941. <tr>
  7942. <td>
  7943. <code>secret</code></br>
  7944. <em>
  7945. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7946. TemplateRef
  7947. </a>
  7948. </em>
  7949. </td>
  7950. <td>
  7951. </td>
  7952. </tr>
  7953. <tr>
  7954. <td>
  7955. <code>target</code></br>
  7956. <em>
  7957. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  7958. TemplateTarget
  7959. </a>
  7960. </em>
  7961. </td>
  7962. <td>
  7963. <em>(Optional)</em>
  7964. </td>
  7965. </tr>
  7966. <tr>
  7967. <td>
  7968. <code>literal</code></br>
  7969. <em>
  7970. string
  7971. </em>
  7972. </td>
  7973. <td>
  7974. <em>(Optional)</em>
  7975. </td>
  7976. </tr>
  7977. </tbody>
  7978. </table>
  7979. <h3 id="external-secrets.io/v1beta1.TemplateMergePolicy">TemplateMergePolicy
  7980. (<code>string</code> alias)</p></h3>
  7981. <p>
  7982. (<em>Appears on:</em>
  7983. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7984. </p>
  7985. <p>
  7986. </p>
  7987. <table>
  7988. <thead>
  7989. <tr>
  7990. <th>Value</th>
  7991. <th>Description</th>
  7992. </tr>
  7993. </thead>
  7994. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  7995. <td></td>
  7996. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  7997. <td></td>
  7998. </tr></tbody>
  7999. </table>
  8000. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  8001. </h3>
  8002. <p>
  8003. (<em>Appears on:</em>
  8004. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  8005. </p>
  8006. <p>
  8007. </p>
  8008. <table>
  8009. <thead>
  8010. <tr>
  8011. <th>Field</th>
  8012. <th>Description</th>
  8013. </tr>
  8014. </thead>
  8015. <tbody>
  8016. <tr>
  8017. <td>
  8018. <code>name</code></br>
  8019. <em>
  8020. string
  8021. </em>
  8022. </td>
  8023. <td>
  8024. </td>
  8025. </tr>
  8026. <tr>
  8027. <td>
  8028. <code>items</code></br>
  8029. <em>
  8030. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  8031. []TemplateRefItem
  8032. </a>
  8033. </em>
  8034. </td>
  8035. <td>
  8036. </td>
  8037. </tr>
  8038. </tbody>
  8039. </table>
  8040. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  8041. </h3>
  8042. <p>
  8043. (<em>Appears on:</em>
  8044. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  8045. </p>
  8046. <p>
  8047. </p>
  8048. <table>
  8049. <thead>
  8050. <tr>
  8051. <th>Field</th>
  8052. <th>Description</th>
  8053. </tr>
  8054. </thead>
  8055. <tbody>
  8056. <tr>
  8057. <td>
  8058. <code>key</code></br>
  8059. <em>
  8060. string
  8061. </em>
  8062. </td>
  8063. <td>
  8064. </td>
  8065. </tr>
  8066. <tr>
  8067. <td>
  8068. <code>templateAs</code></br>
  8069. <em>
  8070. <a href="#external-secrets.io/v1beta1.TemplateScope">
  8071. TemplateScope
  8072. </a>
  8073. </em>
  8074. </td>
  8075. <td>
  8076. </td>
  8077. </tr>
  8078. </tbody>
  8079. </table>
  8080. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  8081. (<code>string</code> alias)</p></h3>
  8082. <p>
  8083. (<em>Appears on:</em>
  8084. <a href="#external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem</a>)
  8085. </p>
  8086. <p>
  8087. </p>
  8088. <table>
  8089. <thead>
  8090. <tr>
  8091. <th>Value</th>
  8092. <th>Description</th>
  8093. </tr>
  8094. </thead>
  8095. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  8096. <td></td>
  8097. </tr><tr><td><p>&#34;Values&#34;</p></td>
  8098. <td></td>
  8099. </tr></tbody>
  8100. </table>
  8101. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  8102. (<code>string</code> alias)</p></h3>
  8103. <p>
  8104. (<em>Appears on:</em>
  8105. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  8106. </p>
  8107. <p>
  8108. </p>
  8109. <table>
  8110. <thead>
  8111. <tr>
  8112. <th>Value</th>
  8113. <th>Description</th>
  8114. </tr>
  8115. </thead>
  8116. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  8117. <td></td>
  8118. </tr><tr><td><p>&#34;Data&#34;</p></td>
  8119. <td></td>
  8120. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  8121. <td></td>
  8122. </tr></tbody>
  8123. </table>
  8124. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  8125. </h3>
  8126. <p>
  8127. (<em>Appears on:</em>
  8128. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  8129. </p>
  8130. <p>
  8131. </p>
  8132. <table>
  8133. <thead>
  8134. <tr>
  8135. <th>Field</th>
  8136. <th>Description</th>
  8137. </tr>
  8138. </thead>
  8139. <tbody>
  8140. <tr>
  8141. <td>
  8142. <code>bearerToken</code></br>
  8143. <em>
  8144. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8145. External Secrets meta/v1.SecretKeySelector
  8146. </a>
  8147. </em>
  8148. </td>
  8149. <td>
  8150. </td>
  8151. </tr>
  8152. </tbody>
  8153. </table>
  8154. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  8155. (<code>byte</code> alias)</p></h3>
  8156. <p>
  8157. </p>
  8158. <table>
  8159. <thead>
  8160. <tr>
  8161. <th>Value</th>
  8162. <th>Description</th>
  8163. </tr>
  8164. </thead>
  8165. <tbody><tr><td><p>2</p></td>
  8166. <td><p>Error indicates that there is a misconfiguration.</p>
  8167. </td>
  8168. </tr><tr><td><p>0</p></td>
  8169. <td><p>Ready indicates that the client is configured correctly
  8170. and can be used.</p>
  8171. </td>
  8172. </tr><tr><td><p>1</p></td>
  8173. <td><p>Unknown indicates that the client can be used
  8174. but information is missing and it can not be validated.</p>
  8175. </td>
  8176. </tr></tbody>
  8177. </table>
  8178. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  8179. </h3>
  8180. <p>
  8181. (<em>Appears on:</em>
  8182. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8183. </p>
  8184. <p>
  8185. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  8186. with the role and secret stored in a Kubernetes Secret resource.</p>
  8187. </p>
  8188. <table>
  8189. <thead>
  8190. <tr>
  8191. <th>Field</th>
  8192. <th>Description</th>
  8193. </tr>
  8194. </thead>
  8195. <tbody>
  8196. <tr>
  8197. <td>
  8198. <code>path</code></br>
  8199. <em>
  8200. string
  8201. </em>
  8202. </td>
  8203. <td>
  8204. <p>Path where the App Role authentication backend is mounted
  8205. in Vault, e.g: &ldquo;approle&rdquo;</p>
  8206. </td>
  8207. </tr>
  8208. <tr>
  8209. <td>
  8210. <code>roleId</code></br>
  8211. <em>
  8212. string
  8213. </em>
  8214. </td>
  8215. <td>
  8216. <em>(Optional)</em>
  8217. <p>RoleID configured in the App Role authentication backend when setting
  8218. up the authentication backend in Vault.</p>
  8219. </td>
  8220. </tr>
  8221. <tr>
  8222. <td>
  8223. <code>roleRef</code></br>
  8224. <em>
  8225. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8226. External Secrets meta/v1.SecretKeySelector
  8227. </a>
  8228. </em>
  8229. </td>
  8230. <td>
  8231. <em>(Optional)</em>
  8232. <p>Reference to a key in a Secret that contains the App Role ID used
  8233. to authenticate with Vault.
  8234. The <code>key</code> field must be specified and denotes which entry within the Secret
  8235. resource is used as the app role id.</p>
  8236. </td>
  8237. </tr>
  8238. <tr>
  8239. <td>
  8240. <code>secretRef</code></br>
  8241. <em>
  8242. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8243. External Secrets meta/v1.SecretKeySelector
  8244. </a>
  8245. </em>
  8246. </td>
  8247. <td>
  8248. <p>Reference to a key in a Secret that contains the App Role secret used
  8249. to authenticate with Vault.
  8250. The <code>key</code> field must be specified and denotes which entry within the Secret
  8251. resource is used as the app role secret.</p>
  8252. </td>
  8253. </tr>
  8254. </tbody>
  8255. </table>
  8256. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  8257. </h3>
  8258. <p>
  8259. (<em>Appears on:</em>
  8260. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8261. </p>
  8262. <p>
  8263. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  8264. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  8265. can be specified. A namespace to authenticate against can optionally be specified.</p>
  8266. </p>
  8267. <table>
  8268. <thead>
  8269. <tr>
  8270. <th>Field</th>
  8271. <th>Description</th>
  8272. </tr>
  8273. </thead>
  8274. <tbody>
  8275. <tr>
  8276. <td>
  8277. <code>namespace</code></br>
  8278. <em>
  8279. string
  8280. </em>
  8281. </td>
  8282. <td>
  8283. <em>(Optional)</em>
  8284. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  8285. Namespaces is a set of features within Vault Enterprise that allows
  8286. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8287. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  8288. This will default to Vault.Namespace field if set, or empty otherwise</p>
  8289. </td>
  8290. </tr>
  8291. <tr>
  8292. <td>
  8293. <code>tokenSecretRef</code></br>
  8294. <em>
  8295. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8296. External Secrets meta/v1.SecretKeySelector
  8297. </a>
  8298. </em>
  8299. </td>
  8300. <td>
  8301. <em>(Optional)</em>
  8302. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  8303. </td>
  8304. </tr>
  8305. <tr>
  8306. <td>
  8307. <code>appRole</code></br>
  8308. <em>
  8309. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  8310. VaultAppRole
  8311. </a>
  8312. </em>
  8313. </td>
  8314. <td>
  8315. <em>(Optional)</em>
  8316. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  8317. with the role and secret stored in a Kubernetes Secret resource.</p>
  8318. </td>
  8319. </tr>
  8320. <tr>
  8321. <td>
  8322. <code>kubernetes</code></br>
  8323. <em>
  8324. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  8325. VaultKubernetesAuth
  8326. </a>
  8327. </em>
  8328. </td>
  8329. <td>
  8330. <em>(Optional)</em>
  8331. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  8332. token stored in the named Secret resource to the Vault server.</p>
  8333. </td>
  8334. </tr>
  8335. <tr>
  8336. <td>
  8337. <code>ldap</code></br>
  8338. <em>
  8339. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  8340. VaultLdapAuth
  8341. </a>
  8342. </em>
  8343. </td>
  8344. <td>
  8345. <em>(Optional)</em>
  8346. <p>Ldap authenticates with Vault by passing username/password pair using
  8347. the LDAP authentication method</p>
  8348. </td>
  8349. </tr>
  8350. <tr>
  8351. <td>
  8352. <code>jwt</code></br>
  8353. <em>
  8354. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  8355. VaultJwtAuth
  8356. </a>
  8357. </em>
  8358. </td>
  8359. <td>
  8360. <em>(Optional)</em>
  8361. <p>Jwt authenticates with Vault by passing role and JWT token using the
  8362. JWT/OIDC authentication method</p>
  8363. </td>
  8364. </tr>
  8365. <tr>
  8366. <td>
  8367. <code>cert</code></br>
  8368. <em>
  8369. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  8370. VaultCertAuth
  8371. </a>
  8372. </em>
  8373. </td>
  8374. <td>
  8375. <em>(Optional)</em>
  8376. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  8377. Cert authentication method</p>
  8378. </td>
  8379. </tr>
  8380. <tr>
  8381. <td>
  8382. <code>iam</code></br>
  8383. <em>
  8384. <a href="#external-secrets.io/v1beta1.VaultIamAuth">
  8385. VaultIamAuth
  8386. </a>
  8387. </em>
  8388. </td>
  8389. <td>
  8390. <em>(Optional)</em>
  8391. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  8392. AWS IAM authentication method</p>
  8393. </td>
  8394. </tr>
  8395. <tr>
  8396. <td>
  8397. <code>userPass</code></br>
  8398. <em>
  8399. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  8400. VaultUserPassAuth
  8401. </a>
  8402. </em>
  8403. </td>
  8404. <td>
  8405. <em>(Optional)</em>
  8406. <p>UserPass authenticates with Vault by passing username/password pair</p>
  8407. </td>
  8408. </tr>
  8409. </tbody>
  8410. </table>
  8411. <h3 id="external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth
  8412. </h3>
  8413. <p>
  8414. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  8415. Only one of secretRef or jwt can be specified.
  8416. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  8417. </p>
  8418. <table>
  8419. <thead>
  8420. <tr>
  8421. <th>Field</th>
  8422. <th>Description</th>
  8423. </tr>
  8424. </thead>
  8425. <tbody>
  8426. <tr>
  8427. <td>
  8428. <code>secretRef</code></br>
  8429. <em>
  8430. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8431. VaultAwsAuthSecretRef
  8432. </a>
  8433. </em>
  8434. </td>
  8435. <td>
  8436. <em>(Optional)</em>
  8437. </td>
  8438. </tr>
  8439. <tr>
  8440. <td>
  8441. <code>jwt</code></br>
  8442. <em>
  8443. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8444. VaultAwsJWTAuth
  8445. </a>
  8446. </em>
  8447. </td>
  8448. <td>
  8449. <em>(Optional)</em>
  8450. </td>
  8451. </tr>
  8452. </tbody>
  8453. </table>
  8454. <h3 id="external-secrets.io/v1beta1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  8455. </h3>
  8456. <p>
  8457. (<em>Appears on:</em>
  8458. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8459. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8460. </p>
  8461. <p>
  8462. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  8463. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  8464. </p>
  8465. <table>
  8466. <thead>
  8467. <tr>
  8468. <th>Field</th>
  8469. <th>Description</th>
  8470. </tr>
  8471. </thead>
  8472. <tbody>
  8473. <tr>
  8474. <td>
  8475. <code>accessKeyIDSecretRef</code></br>
  8476. <em>
  8477. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8478. External Secrets meta/v1.SecretKeySelector
  8479. </a>
  8480. </em>
  8481. </td>
  8482. <td>
  8483. <p>The AccessKeyID is used for authentication</p>
  8484. </td>
  8485. </tr>
  8486. <tr>
  8487. <td>
  8488. <code>secretAccessKeySecretRef</code></br>
  8489. <em>
  8490. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8491. External Secrets meta/v1.SecretKeySelector
  8492. </a>
  8493. </em>
  8494. </td>
  8495. <td>
  8496. <p>The SecretAccessKey is used for authentication</p>
  8497. </td>
  8498. </tr>
  8499. <tr>
  8500. <td>
  8501. <code>sessionTokenSecretRef</code></br>
  8502. <em>
  8503. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8504. External Secrets meta/v1.SecretKeySelector
  8505. </a>
  8506. </em>
  8507. </td>
  8508. <td>
  8509. <p>The SessionToken used for authentication
  8510. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  8511. 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>
  8512. </td>
  8513. </tr>
  8514. </tbody>
  8515. </table>
  8516. <h3 id="external-secrets.io/v1beta1.VaultAwsJWTAuth">VaultAwsJWTAuth
  8517. </h3>
  8518. <p>
  8519. (<em>Appears on:</em>
  8520. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8521. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8522. </p>
  8523. <p>
  8524. <p>Authenticate against AWS using service account tokens.</p>
  8525. </p>
  8526. <table>
  8527. <thead>
  8528. <tr>
  8529. <th>Field</th>
  8530. <th>Description</th>
  8531. </tr>
  8532. </thead>
  8533. <tbody>
  8534. <tr>
  8535. <td>
  8536. <code>serviceAccountRef</code></br>
  8537. <em>
  8538. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8539. External Secrets meta/v1.ServiceAccountSelector
  8540. </a>
  8541. </em>
  8542. </td>
  8543. <td>
  8544. </td>
  8545. </tr>
  8546. </tbody>
  8547. </table>
  8548. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  8549. </h3>
  8550. <p>
  8551. (<em>Appears on:</em>
  8552. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8553. </p>
  8554. <p>
  8555. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8556. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  8557. </p>
  8558. <table>
  8559. <thead>
  8560. <tr>
  8561. <th>Field</th>
  8562. <th>Description</th>
  8563. </tr>
  8564. </thead>
  8565. <tbody>
  8566. <tr>
  8567. <td>
  8568. <code>clientCert</code></br>
  8569. <em>
  8570. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8571. External Secrets meta/v1.SecretKeySelector
  8572. </a>
  8573. </em>
  8574. </td>
  8575. <td>
  8576. <em>(Optional)</em>
  8577. <p>ClientCert is a certificate to authenticate using the Cert Vault
  8578. authentication method</p>
  8579. </td>
  8580. </tr>
  8581. <tr>
  8582. <td>
  8583. <code>secretRef</code></br>
  8584. <em>
  8585. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8586. External Secrets meta/v1.SecretKeySelector
  8587. </a>
  8588. </em>
  8589. </td>
  8590. <td>
  8591. <p>SecretRef to a key in a Secret resource containing client private key to
  8592. authenticate with Vault using the Cert authentication method</p>
  8593. </td>
  8594. </tr>
  8595. </tbody>
  8596. </table>
  8597. <h3 id="external-secrets.io/v1beta1.VaultClientTLS">VaultClientTLS
  8598. </h3>
  8599. <p>
  8600. (<em>Appears on:</em>
  8601. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8602. </p>
  8603. <p>
  8604. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  8605. when the Vault server requires mutual authentication.</p>
  8606. </p>
  8607. <table>
  8608. <thead>
  8609. <tr>
  8610. <th>Field</th>
  8611. <th>Description</th>
  8612. </tr>
  8613. </thead>
  8614. <tbody>
  8615. <tr>
  8616. <td>
  8617. <code>certSecretRef</code></br>
  8618. <em>
  8619. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8620. External Secrets meta/v1.SecretKeySelector
  8621. </a>
  8622. </em>
  8623. </td>
  8624. <td>
  8625. <p>CertSecretRef is a certificate added to the transport layer
  8626. when communicating with the Vault server.
  8627. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  8628. </td>
  8629. </tr>
  8630. <tr>
  8631. <td>
  8632. <code>keySecretRef</code></br>
  8633. <em>
  8634. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8635. External Secrets meta/v1.SecretKeySelector
  8636. </a>
  8637. </em>
  8638. </td>
  8639. <td>
  8640. <p>KeySecretRef to a key in a Secret resource containing client private key
  8641. added to the transport layer when communicating with the Vault server.
  8642. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  8643. </td>
  8644. </tr>
  8645. </tbody>
  8646. </table>
  8647. <h3 id="external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth
  8648. </h3>
  8649. <p>
  8650. (<em>Appears on:</em>
  8651. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8652. </p>
  8653. <p>
  8654. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8655. </p>
  8656. <table>
  8657. <thead>
  8658. <tr>
  8659. <th>Field</th>
  8660. <th>Description</th>
  8661. </tr>
  8662. </thead>
  8663. <tbody>
  8664. <tr>
  8665. <td>
  8666. <code>path</code></br>
  8667. <em>
  8668. string
  8669. </em>
  8670. </td>
  8671. <td>
  8672. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  8673. </td>
  8674. </tr>
  8675. <tr>
  8676. <td>
  8677. <code>region</code></br>
  8678. <em>
  8679. string
  8680. </em>
  8681. </td>
  8682. <td>
  8683. <p>AWS region</p>
  8684. </td>
  8685. </tr>
  8686. <tr>
  8687. <td>
  8688. <code>role</code></br>
  8689. <em>
  8690. string
  8691. </em>
  8692. </td>
  8693. <td>
  8694. <p>This is the AWS role to be assumed before talking to vault</p>
  8695. </td>
  8696. </tr>
  8697. <tr>
  8698. <td>
  8699. <code>vaultRole</code></br>
  8700. <em>
  8701. string
  8702. </em>
  8703. </td>
  8704. <td>
  8705. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  8706. </td>
  8707. </tr>
  8708. <tr>
  8709. <td>
  8710. <code>externalID</code></br>
  8711. <em>
  8712. string
  8713. </em>
  8714. </td>
  8715. <td>
  8716. <p>AWS External ID set on assumed IAM roles</p>
  8717. </td>
  8718. </tr>
  8719. <tr>
  8720. <td>
  8721. <code>vaultAwsIamServerID</code></br>
  8722. <em>
  8723. string
  8724. </em>
  8725. </td>
  8726. <td>
  8727. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8728. </td>
  8729. </tr>
  8730. <tr>
  8731. <td>
  8732. <code>secretRef</code></br>
  8733. <em>
  8734. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8735. VaultAwsAuthSecretRef
  8736. </a>
  8737. </em>
  8738. </td>
  8739. <td>
  8740. <em>(Optional)</em>
  8741. <p>Specify credentials in a Secret object</p>
  8742. </td>
  8743. </tr>
  8744. <tr>
  8745. <td>
  8746. <code>jwt</code></br>
  8747. <em>
  8748. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8749. VaultAwsJWTAuth
  8750. </a>
  8751. </em>
  8752. </td>
  8753. <td>
  8754. <em>(Optional)</em>
  8755. <p>Specify a service account with IRSA enabled</p>
  8756. </td>
  8757. </tr>
  8758. </tbody>
  8759. </table>
  8760. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  8761. </h3>
  8762. <p>
  8763. (<em>Appears on:</em>
  8764. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8765. </p>
  8766. <p>
  8767. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8768. method, with the role name and a token stored in a Kubernetes Secret resource or
  8769. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  8770. </p>
  8771. <table>
  8772. <thead>
  8773. <tr>
  8774. <th>Field</th>
  8775. <th>Description</th>
  8776. </tr>
  8777. </thead>
  8778. <tbody>
  8779. <tr>
  8780. <td>
  8781. <code>path</code></br>
  8782. <em>
  8783. string
  8784. </em>
  8785. </td>
  8786. <td>
  8787. <p>Path where the JWT authentication backend is mounted
  8788. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  8789. </td>
  8790. </tr>
  8791. <tr>
  8792. <td>
  8793. <code>role</code></br>
  8794. <em>
  8795. string
  8796. </em>
  8797. </td>
  8798. <td>
  8799. <em>(Optional)</em>
  8800. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  8801. authentication method</p>
  8802. </td>
  8803. </tr>
  8804. <tr>
  8805. <td>
  8806. <code>secretRef</code></br>
  8807. <em>
  8808. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8809. External Secrets meta/v1.SecretKeySelector
  8810. </a>
  8811. </em>
  8812. </td>
  8813. <td>
  8814. <em>(Optional)</em>
  8815. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  8816. authenticate with Vault using the JWT/OIDC authentication method.</p>
  8817. </td>
  8818. </tr>
  8819. <tr>
  8820. <td>
  8821. <code>kubernetesServiceAccountToken</code></br>
  8822. <em>
  8823. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  8824. VaultKubernetesServiceAccountTokenAuth
  8825. </a>
  8826. </em>
  8827. </td>
  8828. <td>
  8829. <em>(Optional)</em>
  8830. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  8831. a token for with the <code>TokenRequest</code> API.</p>
  8832. </td>
  8833. </tr>
  8834. </tbody>
  8835. </table>
  8836. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  8837. (<code>string</code> alias)</p></h3>
  8838. <p>
  8839. (<em>Appears on:</em>
  8840. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8841. </p>
  8842. <p>
  8843. </p>
  8844. <table>
  8845. <thead>
  8846. <tr>
  8847. <th>Value</th>
  8848. <th>Description</th>
  8849. </tr>
  8850. </thead>
  8851. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  8852. <td></td>
  8853. </tr><tr><td><p>&#34;v2&#34;</p></td>
  8854. <td></td>
  8855. </tr></tbody>
  8856. </table>
  8857. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  8858. </h3>
  8859. <p>
  8860. (<em>Appears on:</em>
  8861. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8862. </p>
  8863. <p>
  8864. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  8865. a Secret.</p>
  8866. </p>
  8867. <table>
  8868. <thead>
  8869. <tr>
  8870. <th>Field</th>
  8871. <th>Description</th>
  8872. </tr>
  8873. </thead>
  8874. <tbody>
  8875. <tr>
  8876. <td>
  8877. <code>mountPath</code></br>
  8878. <em>
  8879. string
  8880. </em>
  8881. </td>
  8882. <td>
  8883. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  8884. &ldquo;kubernetes&rdquo;</p>
  8885. </td>
  8886. </tr>
  8887. <tr>
  8888. <td>
  8889. <code>serviceAccountRef</code></br>
  8890. <em>
  8891. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8892. External Secrets meta/v1.ServiceAccountSelector
  8893. </a>
  8894. </em>
  8895. </td>
  8896. <td>
  8897. <em>(Optional)</em>
  8898. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  8899. If the service account is specified, the service account secret token JWT will be used
  8900. for authenticating with Vault. If the service account selector is not supplied,
  8901. the secretRef will be used instead.</p>
  8902. </td>
  8903. </tr>
  8904. <tr>
  8905. <td>
  8906. <code>secretRef</code></br>
  8907. <em>
  8908. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8909. External Secrets meta/v1.SecretKeySelector
  8910. </a>
  8911. </em>
  8912. </td>
  8913. <td>
  8914. <em>(Optional)</em>
  8915. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  8916. for authenticating with Vault. If a name is specified without a key,
  8917. <code>token</code> is the default. If one is not specified, the one bound to
  8918. the controller will be used.</p>
  8919. </td>
  8920. </tr>
  8921. <tr>
  8922. <td>
  8923. <code>role</code></br>
  8924. <em>
  8925. string
  8926. </em>
  8927. </td>
  8928. <td>
  8929. <p>A required field containing the Vault Role to assume. A Role binds a
  8930. Kubernetes ServiceAccount with a set of Vault policies.</p>
  8931. </td>
  8932. </tr>
  8933. </tbody>
  8934. </table>
  8935. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  8936. </h3>
  8937. <p>
  8938. (<em>Appears on:</em>
  8939. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  8940. </p>
  8941. <p>
  8942. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  8943. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  8944. </p>
  8945. <table>
  8946. <thead>
  8947. <tr>
  8948. <th>Field</th>
  8949. <th>Description</th>
  8950. </tr>
  8951. </thead>
  8952. <tbody>
  8953. <tr>
  8954. <td>
  8955. <code>serviceAccountRef</code></br>
  8956. <em>
  8957. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8958. External Secrets meta/v1.ServiceAccountSelector
  8959. </a>
  8960. </em>
  8961. </td>
  8962. <td>
  8963. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  8964. </td>
  8965. </tr>
  8966. <tr>
  8967. <td>
  8968. <code>audiences</code></br>
  8969. <em>
  8970. []string
  8971. </em>
  8972. </td>
  8973. <td>
  8974. <em>(Optional)</em>
  8975. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  8976. account token for the service account referenced by <code>serviceAccountRef</code>.
  8977. Defaults to a single audience <code>vault</code> it not specified.
  8978. Deprecated: use serviceAccountRef.Audiences instead</p>
  8979. </td>
  8980. </tr>
  8981. <tr>
  8982. <td>
  8983. <code>expirationSeconds</code></br>
  8984. <em>
  8985. int64
  8986. </em>
  8987. </td>
  8988. <td>
  8989. <em>(Optional)</em>
  8990. <p>Optional expiration time in seconds that will be used to request a temporary
  8991. Kubernetes service account token for the service account referenced by
  8992. <code>serviceAccountRef</code>.
  8993. Deprecated: this will be removed in the future.
  8994. Defaults to 10 minutes.</p>
  8995. </td>
  8996. </tr>
  8997. </tbody>
  8998. </table>
  8999. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  9000. </h3>
  9001. <p>
  9002. (<em>Appears on:</em>
  9003. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  9004. </p>
  9005. <p>
  9006. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  9007. with the username and password stored in a Kubernetes Secret resource.</p>
  9008. </p>
  9009. <table>
  9010. <thead>
  9011. <tr>
  9012. <th>Field</th>
  9013. <th>Description</th>
  9014. </tr>
  9015. </thead>
  9016. <tbody>
  9017. <tr>
  9018. <td>
  9019. <code>path</code></br>
  9020. <em>
  9021. string
  9022. </em>
  9023. </td>
  9024. <td>
  9025. <p>Path where the LDAP authentication backend is mounted
  9026. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  9027. </td>
  9028. </tr>
  9029. <tr>
  9030. <td>
  9031. <code>username</code></br>
  9032. <em>
  9033. string
  9034. </em>
  9035. </td>
  9036. <td>
  9037. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  9038. authentication method</p>
  9039. </td>
  9040. </tr>
  9041. <tr>
  9042. <td>
  9043. <code>secretRef</code></br>
  9044. <em>
  9045. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9046. External Secrets meta/v1.SecretKeySelector
  9047. </a>
  9048. </em>
  9049. </td>
  9050. <td>
  9051. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  9052. user used to authenticate with Vault using the LDAP authentication
  9053. method</p>
  9054. </td>
  9055. </tr>
  9056. </tbody>
  9057. </table>
  9058. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  9059. </h3>
  9060. <p>
  9061. (<em>Appears on:</em>
  9062. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9063. </p>
  9064. <p>
  9065. <p>Configures an store to sync secrets using a HashiCorp Vault
  9066. KV backend.</p>
  9067. </p>
  9068. <table>
  9069. <thead>
  9070. <tr>
  9071. <th>Field</th>
  9072. <th>Description</th>
  9073. </tr>
  9074. </thead>
  9075. <tbody>
  9076. <tr>
  9077. <td>
  9078. <code>auth</code></br>
  9079. <em>
  9080. <a href="#external-secrets.io/v1beta1.VaultAuth">
  9081. VaultAuth
  9082. </a>
  9083. </em>
  9084. </td>
  9085. <td>
  9086. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  9087. </td>
  9088. </tr>
  9089. <tr>
  9090. <td>
  9091. <code>server</code></br>
  9092. <em>
  9093. string
  9094. </em>
  9095. </td>
  9096. <td>
  9097. <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>
  9098. </td>
  9099. </tr>
  9100. <tr>
  9101. <td>
  9102. <code>path</code></br>
  9103. <em>
  9104. string
  9105. </em>
  9106. </td>
  9107. <td>
  9108. <em>(Optional)</em>
  9109. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  9110. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  9111. for fetching secrets from Vault is optional and will be appended
  9112. if not present in specified path.</p>
  9113. </td>
  9114. </tr>
  9115. <tr>
  9116. <td>
  9117. <code>version</code></br>
  9118. <em>
  9119. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  9120. VaultKVStoreVersion
  9121. </a>
  9122. </em>
  9123. </td>
  9124. <td>
  9125. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  9126. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  9127. </td>
  9128. </tr>
  9129. <tr>
  9130. <td>
  9131. <code>namespace</code></br>
  9132. <em>
  9133. string
  9134. </em>
  9135. </td>
  9136. <td>
  9137. <em>(Optional)</em>
  9138. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  9139. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  9140. 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>
  9141. </td>
  9142. </tr>
  9143. <tr>
  9144. <td>
  9145. <code>caBundle</code></br>
  9146. <em>
  9147. []byte
  9148. </em>
  9149. </td>
  9150. <td>
  9151. <em>(Optional)</em>
  9152. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  9153. if the Server URL is using HTTPS protocol. This parameter is ignored for
  9154. plain HTTP protocol connection. If not set the system root certificates
  9155. are used to validate the TLS connection.</p>
  9156. </td>
  9157. </tr>
  9158. <tr>
  9159. <td>
  9160. <code>tls</code></br>
  9161. <em>
  9162. <a href="#external-secrets.io/v1beta1.VaultClientTLS">
  9163. VaultClientTLS
  9164. </a>
  9165. </em>
  9166. </td>
  9167. <td>
  9168. <em>(Optional)</em>
  9169. <p>The configuration used for client side related TLS communication, when the Vault server
  9170. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  9171. This parameter is ignored for plain HTTP protocol connection.
  9172. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  9173. which is available under the <code>auth.cert</code> section.</p>
  9174. </td>
  9175. </tr>
  9176. <tr>
  9177. <td>
  9178. <code>caProvider</code></br>
  9179. <em>
  9180. <a href="#external-secrets.io/v1beta1.CAProvider">
  9181. CAProvider
  9182. </a>
  9183. </em>
  9184. </td>
  9185. <td>
  9186. <em>(Optional)</em>
  9187. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  9188. </td>
  9189. </tr>
  9190. <tr>
  9191. <td>
  9192. <code>readYourWrites</code></br>
  9193. <em>
  9194. bool
  9195. </em>
  9196. </td>
  9197. <td>
  9198. <em>(Optional)</em>
  9199. <p>ReadYourWrites ensures isolated read-after-write semantics by
  9200. providing discovered cluster replication states in each request.
  9201. More information about eventual consistency in Vault can be found here
  9202. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  9203. </td>
  9204. </tr>
  9205. <tr>
  9206. <td>
  9207. <code>forwardInconsistent</code></br>
  9208. <em>
  9209. bool
  9210. </em>
  9211. </td>
  9212. <td>
  9213. <em>(Optional)</em>
  9214. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  9215. leader instead of simply retrying within a loop. This can increase performance if
  9216. the option is enabled serverside.
  9217. <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>
  9218. </td>
  9219. </tr>
  9220. </tbody>
  9221. </table>
  9222. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  9223. </h3>
  9224. <p>
  9225. (<em>Appears on:</em>
  9226. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  9227. </p>
  9228. <p>
  9229. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  9230. with the username and password stored in a Kubernetes Secret resource.</p>
  9231. </p>
  9232. <table>
  9233. <thead>
  9234. <tr>
  9235. <th>Field</th>
  9236. <th>Description</th>
  9237. </tr>
  9238. </thead>
  9239. <tbody>
  9240. <tr>
  9241. <td>
  9242. <code>path</code></br>
  9243. <em>
  9244. string
  9245. </em>
  9246. </td>
  9247. <td>
  9248. <p>Path where the UserPassword authentication backend is mounted
  9249. in Vault, e.g: &ldquo;user&rdquo;</p>
  9250. </td>
  9251. </tr>
  9252. <tr>
  9253. <td>
  9254. <code>username</code></br>
  9255. <em>
  9256. string
  9257. </em>
  9258. </td>
  9259. <td>
  9260. <p>Username is a user name used to authenticate using the UserPass Vault
  9261. authentication method</p>
  9262. </td>
  9263. </tr>
  9264. <tr>
  9265. <td>
  9266. <code>secretRef</code></br>
  9267. <em>
  9268. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9269. External Secrets meta/v1.SecretKeySelector
  9270. </a>
  9271. </em>
  9272. </td>
  9273. <td>
  9274. <p>SecretRef to a key in a Secret resource containing password for the
  9275. user used to authenticate with Vault using the UserPass authentication
  9276. method</p>
  9277. </td>
  9278. </tr>
  9279. </tbody>
  9280. </table>
  9281. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  9282. </h3>
  9283. <p>
  9284. (<em>Appears on:</em>
  9285. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9286. </p>
  9287. <p>
  9288. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  9289. </p>
  9290. <table>
  9291. <thead>
  9292. <tr>
  9293. <th>Field</th>
  9294. <th>Description</th>
  9295. </tr>
  9296. </thead>
  9297. <tbody>
  9298. <tr>
  9299. <td>
  9300. <code>type</code></br>
  9301. <em>
  9302. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  9303. WebhookCAProviderType
  9304. </a>
  9305. </em>
  9306. </td>
  9307. <td>
  9308. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  9309. </td>
  9310. </tr>
  9311. <tr>
  9312. <td>
  9313. <code>name</code></br>
  9314. <em>
  9315. string
  9316. </em>
  9317. </td>
  9318. <td>
  9319. <p>The name of the object located at the provider type.</p>
  9320. </td>
  9321. </tr>
  9322. <tr>
  9323. <td>
  9324. <code>key</code></br>
  9325. <em>
  9326. string
  9327. </em>
  9328. </td>
  9329. <td>
  9330. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  9331. </td>
  9332. </tr>
  9333. <tr>
  9334. <td>
  9335. <code>namespace</code></br>
  9336. <em>
  9337. string
  9338. </em>
  9339. </td>
  9340. <td>
  9341. <em>(Optional)</em>
  9342. <p>The namespace the Provider type is in.</p>
  9343. </td>
  9344. </tr>
  9345. </tbody>
  9346. </table>
  9347. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  9348. (<code>string</code> alias)</p></h3>
  9349. <p>
  9350. (<em>Appears on:</em>
  9351. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  9352. </p>
  9353. <p>
  9354. </p>
  9355. <table>
  9356. <thead>
  9357. <tr>
  9358. <th>Value</th>
  9359. <th>Description</th>
  9360. </tr>
  9361. </thead>
  9362. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  9363. <td></td>
  9364. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  9365. <td></td>
  9366. </tr></tbody>
  9367. </table>
  9368. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  9369. </h3>
  9370. <p>
  9371. (<em>Appears on:</em>
  9372. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9373. </p>
  9374. <p>
  9375. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  9376. </p>
  9377. <table>
  9378. <thead>
  9379. <tr>
  9380. <th>Field</th>
  9381. <th>Description</th>
  9382. </tr>
  9383. </thead>
  9384. <tbody>
  9385. <tr>
  9386. <td>
  9387. <code>method</code></br>
  9388. <em>
  9389. string
  9390. </em>
  9391. </td>
  9392. <td>
  9393. <p>Webhook Method</p>
  9394. </td>
  9395. </tr>
  9396. <tr>
  9397. <td>
  9398. <code>url</code></br>
  9399. <em>
  9400. string
  9401. </em>
  9402. </td>
  9403. <td>
  9404. <p>Webhook url to call</p>
  9405. </td>
  9406. </tr>
  9407. <tr>
  9408. <td>
  9409. <code>headers</code></br>
  9410. <em>
  9411. map[string]string
  9412. </em>
  9413. </td>
  9414. <td>
  9415. <em>(Optional)</em>
  9416. <p>Headers</p>
  9417. </td>
  9418. </tr>
  9419. <tr>
  9420. <td>
  9421. <code>body</code></br>
  9422. <em>
  9423. string
  9424. </em>
  9425. </td>
  9426. <td>
  9427. <em>(Optional)</em>
  9428. <p>Body</p>
  9429. </td>
  9430. </tr>
  9431. <tr>
  9432. <td>
  9433. <code>timeout</code></br>
  9434. <em>
  9435. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  9436. Kubernetes meta/v1.Duration
  9437. </a>
  9438. </em>
  9439. </td>
  9440. <td>
  9441. <em>(Optional)</em>
  9442. <p>Timeout</p>
  9443. </td>
  9444. </tr>
  9445. <tr>
  9446. <td>
  9447. <code>result</code></br>
  9448. <em>
  9449. <a href="#external-secrets.io/v1beta1.WebhookResult">
  9450. WebhookResult
  9451. </a>
  9452. </em>
  9453. </td>
  9454. <td>
  9455. <p>Result formatting</p>
  9456. </td>
  9457. </tr>
  9458. <tr>
  9459. <td>
  9460. <code>secrets</code></br>
  9461. <em>
  9462. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  9463. []WebhookSecret
  9464. </a>
  9465. </em>
  9466. </td>
  9467. <td>
  9468. <em>(Optional)</em>
  9469. <p>Secrets to fill in templates
  9470. These secrets will be passed to the templating function as key value pairs under the given name</p>
  9471. </td>
  9472. </tr>
  9473. <tr>
  9474. <td>
  9475. <code>caBundle</code></br>
  9476. <em>
  9477. []byte
  9478. </em>
  9479. </td>
  9480. <td>
  9481. <em>(Optional)</em>
  9482. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  9483. if the Server URL is using HTTPS protocol. This parameter is ignored for
  9484. plain HTTP protocol connection. If not set the system root certificates
  9485. are used to validate the TLS connection.</p>
  9486. </td>
  9487. </tr>
  9488. <tr>
  9489. <td>
  9490. <code>caProvider</code></br>
  9491. <em>
  9492. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  9493. WebhookCAProvider
  9494. </a>
  9495. </em>
  9496. </td>
  9497. <td>
  9498. <em>(Optional)</em>
  9499. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  9500. </td>
  9501. </tr>
  9502. </tbody>
  9503. </table>
  9504. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  9505. </h3>
  9506. <p>
  9507. (<em>Appears on:</em>
  9508. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9509. </p>
  9510. <p>
  9511. </p>
  9512. <table>
  9513. <thead>
  9514. <tr>
  9515. <th>Field</th>
  9516. <th>Description</th>
  9517. </tr>
  9518. </thead>
  9519. <tbody>
  9520. <tr>
  9521. <td>
  9522. <code>jsonPath</code></br>
  9523. <em>
  9524. string
  9525. </em>
  9526. </td>
  9527. <td>
  9528. <em>(Optional)</em>
  9529. <p>Json path of return value</p>
  9530. </td>
  9531. </tr>
  9532. </tbody>
  9533. </table>
  9534. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  9535. </h3>
  9536. <p>
  9537. (<em>Appears on:</em>
  9538. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9539. </p>
  9540. <p>
  9541. </p>
  9542. <table>
  9543. <thead>
  9544. <tr>
  9545. <th>Field</th>
  9546. <th>Description</th>
  9547. </tr>
  9548. </thead>
  9549. <tbody>
  9550. <tr>
  9551. <td>
  9552. <code>name</code></br>
  9553. <em>
  9554. string
  9555. </em>
  9556. </td>
  9557. <td>
  9558. <p>Name of this secret in templates</p>
  9559. </td>
  9560. </tr>
  9561. <tr>
  9562. <td>
  9563. <code>secretRef</code></br>
  9564. <em>
  9565. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9566. External Secrets meta/v1.SecretKeySelector
  9567. </a>
  9568. </em>
  9569. </td>
  9570. <td>
  9571. <p>Secret ref to fill in credentials</p>
  9572. </td>
  9573. </tr>
  9574. </tbody>
  9575. </table>
  9576. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  9577. </h3>
  9578. <p>
  9579. (<em>Appears on:</em>
  9580. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9581. </p>
  9582. <p>
  9583. </p>
  9584. <table>
  9585. <thead>
  9586. <tr>
  9587. <th>Field</th>
  9588. <th>Description</th>
  9589. </tr>
  9590. </thead>
  9591. <tbody>
  9592. <tr>
  9593. <td>
  9594. <code>authorizedKeySecretRef</code></br>
  9595. <em>
  9596. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9597. External Secrets meta/v1.SecretKeySelector
  9598. </a>
  9599. </em>
  9600. </td>
  9601. <td>
  9602. <em>(Optional)</em>
  9603. <p>The authorized key used for authentication</p>
  9604. </td>
  9605. </tr>
  9606. </tbody>
  9607. </table>
  9608. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  9609. </h3>
  9610. <p>
  9611. (<em>Appears on:</em>
  9612. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9613. </p>
  9614. <p>
  9615. </p>
  9616. <table>
  9617. <thead>
  9618. <tr>
  9619. <th>Field</th>
  9620. <th>Description</th>
  9621. </tr>
  9622. </thead>
  9623. <tbody>
  9624. <tr>
  9625. <td>
  9626. <code>certSecretRef</code></br>
  9627. <em>
  9628. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9629. External Secrets meta/v1.SecretKeySelector
  9630. </a>
  9631. </em>
  9632. </td>
  9633. <td>
  9634. </td>
  9635. </tr>
  9636. </tbody>
  9637. </table>
  9638. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  9639. </h3>
  9640. <p>
  9641. (<em>Appears on:</em>
  9642. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9643. </p>
  9644. <p>
  9645. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  9646. </p>
  9647. <table>
  9648. <thead>
  9649. <tr>
  9650. <th>Field</th>
  9651. <th>Description</th>
  9652. </tr>
  9653. </thead>
  9654. <tbody>
  9655. <tr>
  9656. <td>
  9657. <code>apiEndpoint</code></br>
  9658. <em>
  9659. string
  9660. </em>
  9661. </td>
  9662. <td>
  9663. <em>(Optional)</em>
  9664. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9665. </td>
  9666. </tr>
  9667. <tr>
  9668. <td>
  9669. <code>auth</code></br>
  9670. <em>
  9671. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  9672. YandexCertificateManagerAuth
  9673. </a>
  9674. </em>
  9675. </td>
  9676. <td>
  9677. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  9678. </td>
  9679. </tr>
  9680. <tr>
  9681. <td>
  9682. <code>caProvider</code></br>
  9683. <em>
  9684. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  9685. YandexCertificateManagerCAProvider
  9686. </a>
  9687. </em>
  9688. </td>
  9689. <td>
  9690. <em>(Optional)</em>
  9691. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9692. </td>
  9693. </tr>
  9694. </tbody>
  9695. </table>
  9696. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  9697. </h3>
  9698. <p>
  9699. (<em>Appears on:</em>
  9700. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9701. </p>
  9702. <p>
  9703. </p>
  9704. <table>
  9705. <thead>
  9706. <tr>
  9707. <th>Field</th>
  9708. <th>Description</th>
  9709. </tr>
  9710. </thead>
  9711. <tbody>
  9712. <tr>
  9713. <td>
  9714. <code>authorizedKeySecretRef</code></br>
  9715. <em>
  9716. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9717. External Secrets meta/v1.SecretKeySelector
  9718. </a>
  9719. </em>
  9720. </td>
  9721. <td>
  9722. <em>(Optional)</em>
  9723. <p>The authorized key used for authentication</p>
  9724. </td>
  9725. </tr>
  9726. </tbody>
  9727. </table>
  9728. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  9729. </h3>
  9730. <p>
  9731. (<em>Appears on:</em>
  9732. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9733. </p>
  9734. <p>
  9735. </p>
  9736. <table>
  9737. <thead>
  9738. <tr>
  9739. <th>Field</th>
  9740. <th>Description</th>
  9741. </tr>
  9742. </thead>
  9743. <tbody>
  9744. <tr>
  9745. <td>
  9746. <code>certSecretRef</code></br>
  9747. <em>
  9748. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9749. External Secrets meta/v1.SecretKeySelector
  9750. </a>
  9751. </em>
  9752. </td>
  9753. <td>
  9754. </td>
  9755. </tr>
  9756. </tbody>
  9757. </table>
  9758. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  9759. </h3>
  9760. <p>
  9761. (<em>Appears on:</em>
  9762. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9763. </p>
  9764. <p>
  9765. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  9766. </p>
  9767. <table>
  9768. <thead>
  9769. <tr>
  9770. <th>Field</th>
  9771. <th>Description</th>
  9772. </tr>
  9773. </thead>
  9774. <tbody>
  9775. <tr>
  9776. <td>
  9777. <code>apiEndpoint</code></br>
  9778. <em>
  9779. string
  9780. </em>
  9781. </td>
  9782. <td>
  9783. <em>(Optional)</em>
  9784. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9785. </td>
  9786. </tr>
  9787. <tr>
  9788. <td>
  9789. <code>auth</code></br>
  9790. <em>
  9791. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  9792. YandexLockboxAuth
  9793. </a>
  9794. </em>
  9795. </td>
  9796. <td>
  9797. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  9798. </td>
  9799. </tr>
  9800. <tr>
  9801. <td>
  9802. <code>caProvider</code></br>
  9803. <em>
  9804. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  9805. YandexLockboxCAProvider
  9806. </a>
  9807. </em>
  9808. </td>
  9809. <td>
  9810. <em>(Optional)</em>
  9811. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9812. </td>
  9813. </tr>
  9814. </tbody>
  9815. </table>
  9816. <hr/>
  9817. <p><em>
  9818. Generated with <code>gen-crd-api-reference-docs</code>.
  9819. </em></p>
  9820. </article>
  9821. </div>
  9822. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  9823. </div>
  9824. </main>
  9825. <footer class="md-footer">
  9826. <div class="md-footer-meta md-typeset">
  9827. <div class="md-footer-meta__inner md-grid">
  9828. <div class="md-copyright">
  9829. <div class="md-copyright__highlight">
  9830. &copy; 2024 The external-secrets Authors.<br/>
  9831. &copy; 2024 The Linux Foundation. All rights reserved.<br/><br/>
  9832. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  9833. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  9834. </div>
  9835. Made with
  9836. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  9837. Material for MkDocs
  9838. </a>
  9839. </div>
  9840. </div>
  9841. </div>
  9842. </footer>
  9843. </div>
  9844. <div class="md-dialog" data-md-component="dialog">
  9845. <div class="md-dialog__inner md-typeset"></div>
  9846. </div>
  9847. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.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>
  9848. <script src="../../assets/javascripts/bundle.1e8ae164.min.js"></script>
  9849. </body>
  9850. </html>